9 lines
114 B
Go
9 lines
114 B
Go
|
|
package httpSender
|
||
|
|
|
||
|
|
// 请求
|
||
|
|
type Requester interface {
|
||
|
|
GetMethod() string
|
||
|
|
GetUrl() string
|
||
|
|
GetData() []byte
|
||
|
|
}
|