mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +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
|
|
}
|