🚧 Disable old Mongoose

This commit is contained in:
Axel Olausson Holtenäs 2022-10-19 21:02:06 +02:00
parent ea2fc1e585
commit 44cbecd3f1

View file

@ -1,12 +1,11 @@
import { Client } from "discord.js";
import * as command from "./command";
import * as database from "./database";
import * as event from "./event";
import * as schedule from "./schedule";
export const start = async (client: Client) => {
await database.connect();
// await database.connect();
await schedule.start(client);
await command.register(client);
await event.register(client);