goProject/trunk/goutil/smsUtil/sender/httpSender/requester.go

9 lines
114 B
Go
Raw Permalink Normal View History

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