package server type SMSService interface { SendSMS(mobile string, smsType int, params map[string]string) (interface{}, error) SendWorldSMS(mobile string, smsType int, params map[string]string) (interface{}, error) ValidateCode(mobile, code string, codeType int) (interface{}, error) }