From 3a1cce6c39c86328d76c8f457f5bebc56a77c936 Mon Sep 17 00:00:00 2001 From: Tyler-A Date: Tue, 7 Jan 2020 00:05:49 -0600 Subject: [PATCH] Add code for running the main bot. --- src/main.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/main.ts diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..bb09027 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,17 @@ +// +// main.ts +// +// Written by: Tyler Akins (2020/01/06) +// + + +import { START_BOT } from "./Twitch" + + + +const MAIN = async () => { + START_BOT() +}; + + +MAIN() \ No newline at end of file