package net.nevet5.buzzbot.commands.utils; import java.util.List; public interface ICommand { void handle(CommandContext ctx); String getName(); String getHelp(); default List getAliases() { return List.of(); } }