mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-03 20:59:41 +08:00
6 lines
94 B
Go
6 lines
94 B
Go
|
package service
|
||
|
|
||
|
type SmsService interface {
|
||
|
SendVerifyCode(mobile string, code int) error
|
||
|
}
|