mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
6 lines
90 B
Go
6 lines
90 B
Go
package sms
|
|
|
|
type SmsService interface {
|
|
SendVerifyCode(mobile string, code int) error
|
|
}
|