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,5 +1,5 @@
const { REST, Routes } = require('discord.js');
const { clientId, guildId, token } = require('./config.json');
const { clientId, guildId, token } = require(process.env.CONFIG_FILE ? `./${process.env.CONFIG_FILE}` : './config.json');
const fs = require('node:fs');
const path = require('node:path');