first commit

This commit is contained in:
Yangtao
2025-11-18 17:48:20 +08:00
commit 6e56cab848
196 changed files with 65809 additions and 0 deletions

18
pkg/constant/content.go Normal file
View File

@ -0,0 +1,18 @@
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{}
}