Add budget spending chart command

This commit is contained in:
2026-08-10 10:53:37 +02:00
parent cd5b076d65
commit 24fcd0b076
4 changed files with 87 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
const fs = require('node:fs');
const path = require('node:path');
const { Client, Collection, Events, GatewayIntentBits, Options, Partials } = require('discord.js');
const { token } = require('./config.json');
const { token } = require(process.env.CONFIG_FILE ? `./${process.env.CONFIG_FILE}` : './config.json');
const createDbConnection = require('./core/db.js');