mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
13 lines
233 B
Go
13 lines
233 B
Go
package domain
|
|
|
|
const (
|
|
NotifyChannelDingtalk = "dingtalk"
|
|
NotifyChannelWebhook = "webhook"
|
|
NotifyChannelTelegram = "telegram"
|
|
NotifyChannelLark = "lark"
|
|
)
|
|
|
|
type NotifyTestPushReq struct {
|
|
Channel string `json:"channel"`
|
|
}
|