This commit is contained in:
2025-03-21 20:44:35 +08:00
parent bac4fd8b11
commit 8cede57a70
21 changed files with 430 additions and 120 deletions

View File

@ -0,0 +1,13 @@
package smsservice
type SMSService interface {
// SendSMS 发送短信
// area 区号
// phoneNumber 手机号
// message 短信内容
SendSMS(area, phoneNumber string, message string) int
}
func NewSMSService() SMSService {
return &GotoneService{}
}