19 lines
391 B
Go
19 lines
391 B
Go
package constant
|
|
|
|
const (
|
|
JxApiToken = "8056be17be26d7e8f4"
|
|
|
|
ContentSmsTemplateTypeLogin = "LOGIN"
|
|
ContentSmsTemplateTypeRegDriver = "REG-DRIVER"
|
|
ContentSmsTemplateTypeRegPassenger = "REG-PASSENGER"
|
|
|
|
ContentSmsRecordSendSuccess = 2
|
|
ContentSmsRecordSendFailed = 1
|
|
)
|
|
|
|
var ContentSmsTemplateType map[string]string
|
|
|
|
func init() {
|
|
ContentSmsTemplateType = map[string]string{}
|
|
}
|