中文枚举

This commit is contained in:
2025-10-24 21:38:52 +08:00
parent 3fd97aa43f
commit bd8729d473
7 changed files with 9 additions and 18 deletions

View File

@@ -14,13 +14,13 @@ type NotifierType string
const (
// NotifierTypeSMTP 表示 SMTP 邮件通知器。
NotifierTypeSMTP NotifierType = "smtp"
NotifierTypeSMTP NotifierType = "邮件"
// NotifierTypeWeChat 表示企业微信通知器。
NotifierTypeWeChat NotifierType = "wechat"
NotifierTypeWeChat NotifierType = "企业微信"
// NotifierTypeLark 表示飞书通知器。
NotifierTypeLark NotifierType = "lark"
NotifierTypeLark NotifierType = "飞书"
// NotifierTypeLog 表示日志通知器,作为最终的告警记录渠道。
NotifierTypeLog NotifierType = "log"
NotifierTypeLog NotifierType = "日志"
)
// AlarmContent 定义了通知的内容