1Panel/backend/constant/alert.go
e770254b65
Some checks failed
Build Test / build-linux-binary (push) Failing after -8m1s
Build / SonarCloud (push) Failing after -8m4s
sync2gitee / repo-sync (push) Failing after -8m6s
feat: 增加短信告警功能 (#6184)
2024-08-20 22:11:13 +08:00

12 lines
243 B
Go

package constant
const (
AlertEnable = "Enable"
AlertDisable = "Disable"
AlertSuccess = "Success"
AlertError = "Error"
AlertSyncError = "SyncError"
AlertPushError = "PushError"
AlertPushSuccess = "PushSuccess"
)