Implement gorush notifications

This commit is contained in:
Zack Elia
2022-01-09 12:05:11 -05:00
parent d4b86dc472
commit ea43422ccf
5 changed files with 100 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ const SerwerSMS = require("./notification-providers/serwersms");
const Stackfield = require("./notification-providers/stackfield");
const WeCom = require("./notification-providers/wecom");
const GoogleChat = require("./notification-providers/google-chat");
const Gorush = require("./notification-providers/gorush");
class Notification {
@@ -65,7 +66,8 @@ class Notification {
new SerwerSMS(),
new Stackfield(),
new WeCom(),
new GoogleChat()
new GoogleChat(),
new Gorush()
];
for (let item of list) {