goProject/.svn/pristine/b6/b63ba8b4a137f1d4a6420d607830ebf682565fb0.svn-base

9 lines
114 B
Plaintext
Raw Normal View History

2025-01-06 16:21:36 +08:00
package httpSender
// 请求
type Requester interface {
GetMethod() string
GetUrl() string
GetData() []byte
}