initial commit

This commit is contained in:
Darius
2025-09-26 13:41:46 +02:00
commit 9a961363f3
17 changed files with 1553 additions and 0 deletions

11
src/config/config.ts Normal file
View File

@@ -0,0 +1,11 @@
import dotenv from "dotenv";
dotenv.config();
export const Config = {
prefix: process.env.PREFIX || "",
username: process.env.USERNAME || "",
access_token: process.env.ACCESS_TOKEN || "",
channels: [process.env.CHANNELS || ""],
developers: [process.env.DEVELOPERS || ""],
};