package cc.fascinated.account.command; import cc.fascinated.account.Account; import cc.fascinated.command.Command; public class DeleteAccountCommand extends Command { public DeleteAccountCommand() { super("deleteaccount", "aetheria.command.deleteaccount"); } @Override public void execute(Account account, String[] args) { } }