mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-13 10:04:42 +08:00
27 lines
488 B
Go
27 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"
|
|
)
|