You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
488 B
Go
28 lines
488 B
Go
package constant
|
|
|
|
const (
|
|
AlertEnable = "Enable"
|
|
AlertDisable = "Disable"
|
|
AlertSuccess = "Success"
|
|
AlertPushing = "Pushing"
|
|
AlertError = "Error"
|
|
AlertSyncError = "SyncError"
|
|
AlertPushError = "PushError"
|
|
AlertPushSuccess = "PushSuccess"
|
|
)
|
|
|
|
const (
|
|
CommonConfig = "common"
|
|
SMSConfig = "sms"
|
|
EmailConfig = "email"
|
|
)
|
|
|
|
const (
|
|
WeChat = "wechat"
|
|
SMS = "sms"
|
|
Email = "mail"
|
|
WeCom = "weCom"
|
|
DingTalk = "dingTalk"
|
|
FeiShu = "feiShu"
|
|
)
|