blob: 29e65b190c78fb3b17daf87548f5ef611daa7308 [file] [log] [blame]
PineaFan64486c42022-12-28 09:21:04 +00001import { group } from "../../../utils/commandRegistration/slashCommandBuilder.js";
2
pineafan41d93562022-07-30 22:10:15 +01003const name = "logs";
pineafan4f164f32022-02-26 22:07:12 +00004const description = "Settings for logging";
5
TheCodedProf7b985d82023-06-08 16:40:41 -04006const subcommand: Awaited<ReturnType<typeof group>> = await group(name, description, `settings/logs`);
PineaFan64486c42022-12-28 09:21:04 +00007
Skyler Greyda16adf2023-03-05 10:22:12 +00008export { name, description, subcommand as command };