application.go 389 字节
Newer Older
E
eoLinker API Management 已提交
1 2 3
package application

import (
Y
Your Name 已提交
4
	goku_plugin "github.com/eolinker/goku-plugin"
E
eoLinker API Management 已提交
5 6 7 8 9
	"net/http"
	"net/url"
	"time"
)

Y
Your Name 已提交
10
//IHttpApplication iHttpApplication
E
eoLinker API Management 已提交
11
type IHttpApplication interface {
Y
Your Name 已提交
12
	Send(ctx goku_plugin.ContextAccess,Proto string, method string, path string, querys url.Values, header http.Header, body []byte, timeout time.Duration, retry int) (*http.Response, string, []string, error)
E
eoLinker API Management 已提交
13
}