Change path to config

Oops...
This commit is contained in:
wolfy01 2020-04-07 04:03:45 -04:00 committed by GitHub
parent 1c72ccf885
commit cc6dcbacf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
const config = require('./db/config'); const config = require('../config');
const quotas = config.quotas; const quotas = config.quotas;
const User = require("./User.js"); const User = require("./User.js");
module.exports = (cl) => { module.exports = (cl) => {
@ -251,4 +251,4 @@ module.exports = (cl) => {
cl.channel.Notification(msg.content); cl.channel.Notification(msg.content);
console.log(msg.content); console.log(msg.content);
}) })
} }