iss-1-irc #2

Closed
stephen wants to merge 6 commits from iss-1-irc into main
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 31589297b9 - Show all commits

View File

@ -4,6 +4,7 @@ const express = require('express')
const app = express();
const fs = require('fs');
const ini = require('ini');
const irc = require('irc');
const mastodon = require('mastodon');
const mqtt = require('mqtt');
const request = require('request');
@ -33,6 +34,8 @@ const gotify_message = config.gotify_message;
const gotify_priority = config.gotify_priority;
const gotify_title = config.gotify_title;
const gotify_url = config.gotify_url;
const irc_nick = config.irc_nick;
const irc_server = config.irc_server;
const mastodon_token = config.mastodon_token;
const mastodon_toot = config.mastodon_toot;
const mastodon_url = config.mastodon_url;