sms_service.go 289 B

1234567
  1. package server
  2. type SMSService interface {
  3. SendSMS(mobile string, smsType int, params map[string]string) (interface{}, error)
  4. SendWorldSMS(mobile string, smsType int, params map[string]string) (interface{}, error)
  5. ValidateCode(mobile, code string, codeType int) (interface{}, error)
  6. }