Add DingDing notification

This commit is contained in:
wuwenjing 2021-10-13 16:13:46 +08:00
parent 57a76e6129
commit 843992c410
4 changed files with 99 additions and 0 deletions

View file

@ -20,6 +20,7 @@ const Telegram = require("./notification-providers/telegram");
const Webhook = require("./notification-providers/webhook");
const Feishu = require("./notification-providers/feishu");
const AliyunSms = require("./notification-providers/aliyun-sms");
const DingDing = require("./notification-providers/dingding");
class Notification {
@ -33,6 +34,7 @@ class Notification {
const list = [
new Apprise(),
new AliyunSms(),
new DingDing(),
new Discord(),
new Teams(),
new Gotify(),