goProject/trunk/goutil/smsUtil/sms/sms.go

10 lines
135 B
Go
Raw Normal View History

2025-01-06 16:01:02 +08:00
package sms
type Sms interface {
// 发送
Send() (bool, error)
// 用于获取准确的返回数据
GetResponse() interface{}
}