UNPKG
twitchcord-bot
Version:
latest (2.0.1)
2.0.1
2.0.0
1.6.7
1.5.7
1.4.7
1.3.7
1.2.7
1.1.7
1.1.6
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A twitch dirscord bot
github.com/camwhite/twitchcord-bot
camwhite/twitchcord-bot
twitchcord-bot
/
index.mjs
12 lines
(8 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
//import Bot from './bot'
import
{ getOptions }
from
'./cli'
import
Bot
from
'./bot'
export
default
(
async
() => {
const
opts =
await
getOptions
()
const
bot =
new
Bot
(opts)
return
bot })()