diff --git a/src/index.ts b/src/index.ts index eefdd3f..0f9f149 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ import Illegitimate from "./utils/Illegitimate" -const illegitimate = new Illegitimate() +const illegitimate = new Illegitimate.Bot() illegitimate.start() diff --git a/src/utils/Illegitimate.ts b/src/utils/Illegitimate.ts index 6927de1..360bf18 100644 --- a/src/utils/Illegitimate.ts +++ b/src/utils/Illegitimate.ts @@ -6,7 +6,7 @@ import init from "./Init" import { loadCronEvents } from "./Cron" const client = new Client() -export default class Illegitimate { +class Bot { constructor() {} async start() { @@ -21,3 +21,5 @@ export default class Illegitimate { }) } } + +export default { Bot, client } \ No newline at end of file