Leo Chen 0396d8222e feat: add mail push
新增电子邮箱推送
2024-10-27 20:21:34 +08:00

15 lines
301 B
Go

package domain
const (
NotifyChannelDingtalk = "dingtalk"
NotifyChannelWebhook = "webhook"
NotifyChannelTelegram = "telegram"
NotifyChannelLark = "lark"
NotifyChannelServerChan = "serverchan"
NotifyChannelMail = "mail"
)
type NotifyTestPushReq struct {
Channel string `json:"channel"`
}