初始化项目

This commit is contained in:
皮蛋13361098506
2025-01-06 16:01:02 +08:00
commit 1b77f62820
575 changed files with 69193 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package sms
type Sms interface {
// 发送
Send() (bool, error)
// 用于获取准确的返回数据
GetResponse() interface{}
}