🚚 schedules now outside handlers

This commit is contained in:
Axel Olausson Holtenäs 2022-04-13 02:34:13 +02:00
parent 23e95234a2
commit b1f04d8103
No known key found for this signature in database
GPG key ID: 9347A5E873995701
2 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ import { Client, Intents } from "discord.js"; // discord.js
import database from "./database";
import locale from "./handlers/locale";
import schedules from "./handlers/schedules";
import schedules from "./schedules";
import events from "./handlers/events";
import commands from "./handlers/commands";

View file

@ -1,8 +1,8 @@
import schedule from "node-schedule";
import users from "../database/schemas/user";
import shopRolesSchema from "../database/schemas/shopRole";
import guilds from "../database/schemas/guild";
import logger from "./logger";
import users from "../../database/schemas/user";
import shopRolesSchema from "../../database/schemas/shopRole";
import guilds from "../../database/schemas/guild";
import logger from "../logger";
import { Client } from "discord.js";
export default async (client: Client) => {