mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-08 01:38:23 +08:00
9 lines
124 B
Go
9 lines
124 B
Go
package sms
|
|
|
|
const Ali = "ALI"
|
|
const Bao = "BAO"
|
|
|
|
type Service interface {
|
|
SendVerifyCode(mobile string, code int) error
|
|
}
|