Merge branch 'main' into 177-typescript

This commit is contained in:
Axel Olausson Holtenäs 2022-04-10 18:17:42 +02:00 committed by GitHub
commit 73bfd0591a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View file

@ -1,6 +1,6 @@
import database from './database';
import deployCommands from './deployCommands';
import dbGuildFix from './dbGuildFix';
import dbMemberFix from './dbMemberFix';
import database from "./database";
import deployCommands from "./deployCommands";
import dbGuildFix from "./dbGuildFix";
import dbMemberFix from "./dbMemberFix";
export default { database, deployCommands, dbGuildFix, dbMemberFix };

View file

@ -1,13 +1,13 @@
// Dependencies
import { Client, Intents } from 'discord.js'; // discord.js
import { Client, Intents } from "discord.js"; // discord.js
import database from './helpers/database';
import events from './handlers/events';
import commands from './handlers/commands';
import locale from './handlers/locale';
import schedules from './handlers/schedules';
import database from "./helpers/database";
import events from "./handlers/events";
import commands from "./handlers/commands";
import locale from "./handlers/locale";
import schedules from "./handlers/schedules";
import config from '../config.json'; // config.json
import config from "../config.json"; // config.json
(async () => {
// Initialize discord.js client