Initial Commit

This commit is contained in:
2022-04-23 22:32:58 -04:00
commit 7deb3dabc7
24 changed files with 1715 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package net.nevet5.buzzbot.commands.utils;
import java.util.List;
public interface ICommand {
void handle(CommandContext ctx);
String getName();
String getHelp();
default List<String> getAliases() {
return List.of();
}
}