diff options
-rw-r--r-- | twitch-bot/bot.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/twitch-bot/bot.js b/twitch-bot/bot.js index b81830c..cdc9780 100644 --- a/twitch-bot/bot.js +++ b/twitch-bot/bot.js @@ -11,7 +11,7 @@ fs.readFile('./settings.json', 'utf8', (err, data) => { // parse JSON string to JSON object const settings = JSON.parse(data); } -} +}); fs.readFile('./reacts.json', 'utf8', (err, data) => { if (err) { @@ -21,7 +21,7 @@ fs.readFile('./reacts.json', 'utf8', (err, data) => { // parse JSON string to JSON object const reacts = JSON.parse(data); } -} +}); fs.readFile('./commands.json', 'utf8', (err, data) => { if (err) { @@ -31,7 +31,7 @@ fs.readFile('./commands.json', 'utf8', (err, data) => { // parse JSON string to JSON object const commands = JSON.parse(data); } -} +}); fs.readFile('./mod_commands.json', 'utf8', (err, data) => { if (err) { @@ -41,7 +41,7 @@ fs.readFile('./mod_commands.json', 'utf8', (err, data) => { // parse JSON string to JSON object const mod_commands = JSON.parse(data); } -} +}); const opts = { identity: { |