add user command to retrieve user information and upload stats

This commit is contained in:
grngxd 2025-07-31 16:48:35 +01:00
parent 2f57cb7d39
commit 5cfcb3ba0c
4 changed files with 82 additions and 31 deletions

5
globals.d.ts vendored
View file

@ -1,7 +1,10 @@
declare module "bun" {
interface Env {
// discord
TOKEN: string;
API: string;
CLIENT_ID: string;
// stereo
DB_URL: string;
DB_TYPE: "sqlite" | "postgres";
}