PineaFan | 64486c4 | 2022-12-28 09:21:04 +0000 | [diff] [blame^] | 1 | import { command } from "../../utils/commandRegistration/slashCommandBuilder.js"; |
2 | |||||
pineafan | 4f164f3 | 2022-02-26 22:07:12 +0000 | [diff] [blame] | 3 | const name = "settings"; |
4 | const description = "Change bot settings"; | ||||
5 | |||||
PineaFan | 64486c4 | 2022-12-28 09:21:04 +0000 | [diff] [blame^] | 6 | |
7 | const subcommand = await command(name, description, "settings") | ||||
8 | |||||
9 | export { name, description, subcommand as command}; |