Support for Bark (APN) notifications

Update bark.js
This commit is contained in:
Lakr Aream 2021-10-24 00:20:24 +08:00
parent c9549c0de2
commit ce852dfa02
4 changed files with 109 additions and 1 deletions

View file

@ -21,6 +21,7 @@ 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");
const Bark = require("./notification-providers/bark");
class Notification {
@ -54,6 +55,7 @@ class Notification {
new SMTP(),
new Telegram(),
new Webhook(),
new Bark(),
];
for (let item of list) {