Initial Commit
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user