Initialize apps/bot and other cleanup

This commit is contained in:
Dominic Ferrando
2026-08-15 16:25:36 -04:00
parent 88107ae5ac
commit 1b886e4744
15 changed files with 281 additions and 11 deletions
@@ -0,0 +1,10 @@
import type { Message } from "discord.js";
import type { Command } from "../service";
export default {
name: "stats",
description: "View your fitness statistics!",
execute: async (message: Message) => {
console.log("Stats executed");
}
} as Command;