Merge branch 'dev' of gitlab.com:ajg0702/ajqueue into dev

This commit is contained in:
ajgeiss0702
2021-09-26 10:42:54 -07:00
11 changed files with 178 additions and 20 deletions
@@ -0,0 +1,11 @@
package us.ajg0702.queue.api;
import us.ajg0702.queue.api.commands.IBaseCommand;
public interface Implementation {
void registerCommand(IBaseCommand command);
void unregisterCommand(String name);
default void unregisterCommand(IBaseCommand command) {
unregisterCommand(command.getName());
}
}