11 lines
243 B
Go
11 lines
243 B
Go
package sms
|
|
|
|
import "fmt"
|
|
|
|
func sendVerificationCode(phone, code string) error {
|
|
// 这里应该是调用短信服务商的API发送短信
|
|
// 这里只是模拟
|
|
fmt.Printf("向手机号 %s 发送验证码: %s\n", phone, code)
|
|
return nil
|
|
}
|