Add code for running the main bot.

This commit is contained in:
Tyler-A 2020-01-07 00:05:49 -06:00
parent de8a0ac19b
commit 3a1cce6c39

17
src/main.ts Normal file
View file

@ -0,0 +1,17 @@
//
// main.ts
//
// Written by: Tyler Akins (2020/01/06)
//
import { START_BOT } from "./Twitch"
const MAIN = async () => {
START_BOT()
};
MAIN()