Move config files to new directory

This commit is contained in:
Essem 2022-07-26 10:38:42 -05:00
parent 6a409283af
commit 81ff5ae0ab
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
11 changed files with 10 additions and 10 deletions

View file

@ -2,7 +2,7 @@ import Command from "./command.js";
import imageDetect from "../utils/imagedetect.js";
import { runningCommands } from "../utils/collections.js";
import { readFileSync } from "fs";
const { emotes } = JSON.parse(readFileSync(new URL("../messages.json", import.meta.url)));
const { emotes } = JSON.parse(readFileSync(new URL("../config/messages.json", import.meta.url)));
import { random } from "../utils/misc.js";
class ImageCommand extends Command {