16 lines
254 B
Java
16 lines
254 B
Java
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();
|
|
}
|
|
}
|