mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 05:29:51 +00:00
23 lines
551 B
Go
23 lines
551 B
Go
package domain
|
|
|
|
/*
|
|
消息通知渠道常量值。
|
|
|
|
注意:如果追加新的常量值,请保持以 ASCII 排序。
|
|
NOTICE: If you add new constant, please keep ASCII order.
|
|
*/
|
|
const (
|
|
NotifyChannelBark = "bark"
|
|
NotifyChannelDingtalk = "dingtalk"
|
|
NotifyChannelEmail = "email"
|
|
NotifyChannelLark = "lark"
|
|
NotifyChannelServerChan = "serverchan"
|
|
NotifyChannelTelegram = "telegram"
|
|
NotifyChannelWebhook = "webhook"
|
|
NotifyChannelWeCom = "wecom"
|
|
)
|
|
|
|
type NotifyTestPushReq struct {
|
|
Channel string `json:"channel"`
|
|
}
|