10 lines
135 B
Go
10 lines
135 B
Go
|
|
package sms
|
||
|
|
|
||
|
|
type Sms interface {
|
||
|
|
// 发送
|
||
|
|
Send() (bool, error)
|
||
|
|
|
||
|
|
// 用于获取准确的返回数据
|
||
|
|
GetResponse() interface{}
|
||
|
|
}
|