import { CommandData, CommandMetadata, MessageCommand } from "commandkit";
export const command: CommandData = {
name: "testing",
};
export const message: MessageCommand = async (ctx) => {
ctx.message.reply("works");
};
export const metadata: CommandMetadata = {
aliases: ["t"],
};
Running:

- The full command (!testing) name works as intended
- The alias (!t) doesn't do anything
- Running !aa which isn't a command results in:
- [ERROR] │ 12:52:01.411 └ Prefix command "aa" was not found.
Running:
