Add User/Server info commands, fix Avatar command

This commit is contained in:
Anya 2022-03-30 09:37:57 -07:00
parent 523ce4173d
commit 7f9d7f3443
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
package moe.oko.Kiafumi.command;
import moe.oko.Kiafumi.util.CommandInfo;
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
import java.util.List;
public class WhoIsCommand extends CommandClass{
@Override
public boolean isEnabled() { return false; }
@Override
public String getName() { return "WHOIS"; }
@Override
public void newCommand(String name, SlashCommandInteractionEvent e) {
}
@Override
public List<CommandInfo> getSlashCommandInfo() {
return null;
}
}

View file

@ -0,0 +1,2 @@
package moe.oko.Kiafumi.command;public class StatsCommand {
}