mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-07 17:28:25 +08:00
6 lines
90 B
Go
6 lines
90 B
Go
package sms
|
|
|
|
type SmsService interface {
|
|
SendVerifyCode(mobile string, code int) error
|
|
}
|