2018-07-13 05:30:54 +00:00
|
|
|
require('module-alias/register')
|
2018-06-25 10:07:10 +00:00
|
|
|
const fs = require('fs')
|
|
|
|
const path = require('path')
|
|
|
|
try {
|
|
|
|
fs.accessSync(path.resolve(__dirname, '.env'))
|
|
|
|
require('dotenv').config()
|
|
|
|
} catch (err) {}
|
|
|
|
require('./app')
|
2018-06-26 16:59:53 +00:00
|
|
|
require('./background')
|
2018-07-18 16:40:07 +00:00
|
|
|
require('./event')
|
|
|
|
const twitchChat = require('./libs/twitch-bot')
|
|
|
|
twitchChat.runBot()
|