Merge branch 'main' into 177-typescript
This commit is contained in:
commit
73bfd0591a
2 changed files with 11 additions and 11 deletions
|
@ -1,6 +1,6 @@
|
||||||
import database from './database';
|
import database from "./database";
|
||||||
import deployCommands from './deployCommands';
|
import deployCommands from "./deployCommands";
|
||||||
import dbGuildFix from './dbGuildFix';
|
import dbGuildFix from "./dbGuildFix";
|
||||||
import dbMemberFix from './dbMemberFix';
|
import dbMemberFix from "./dbMemberFix";
|
||||||
|
|
||||||
export default { database, deployCommands, dbGuildFix, dbMemberFix };
|
export default { database, deployCommands, dbGuildFix, dbMemberFix };
|
||||||
|
|
14
src/index.ts
14
src/index.ts
|
@ -1,13 +1,13 @@
|
||||||
// Dependencies
|
// Dependencies
|
||||||
import { Client, Intents } from 'discord.js'; // discord.js
|
import { Client, Intents } from "discord.js"; // discord.js
|
||||||
|
|
||||||
import database from './helpers/database';
|
import database from "./helpers/database";
|
||||||
import events from './handlers/events';
|
import events from "./handlers/events";
|
||||||
import commands from './handlers/commands';
|
import commands from "./handlers/commands";
|
||||||
import locale from './handlers/locale';
|
import locale from "./handlers/locale";
|
||||||
import schedules from './handlers/schedules';
|
import schedules from "./handlers/schedules";
|
||||||
|
|
||||||
import config from '../config.json'; // config.json
|
import config from "../config.json"; // config.json
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
// Initialize discord.js client
|
// Initialize discord.js client
|
||||||
|
|
Loading…
Add table
Reference in a new issue