Some music bot functionality added

This commit is contained in:
2020-07-22 02:40:56 -05:00
parent 4838eee050
commit 82a25dbe09
55 changed files with 1391 additions and 197 deletions

View File

@@ -0,0 +1,14 @@
package com.fpghoti.biscuit.commands.base;
import com.fpghoti.biscuit.commands.BaseCommand;
import com.fpghoti.biscuit.commands.CommandType;
public abstract class ConsoleCommand extends BaseCommand{
public abstract void execute(String[] args);
public CommandType getType() {
return CommandType.CONSOLE;
}
}