haibei/pkg/sms/sms.go
2025-06-19 10:33:58 +08:00

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
}