19 lines
No EOL
222 B
TypeScript
19 lines
No EOL
222 B
TypeScript
//
|
|
// main.ts
|
|
//
|
|
// Written by: Tyler Akins (2020/01/06 - 2020/01/11)
|
|
//
|
|
|
|
|
|
import { START_BOT } from "./Twitch"
|
|
|
|
|
|
|
|
const MAIN = async () => {
|
|
START_BOT().catch(
|
|
(err) => {console.error(err);}
|
|
);
|
|
};
|
|
|
|
|
|
MAIN() |