Updated ResponderGroupCommand#execute

This commit is contained in:
mathias 2021-10-02 20:16:36 +02:00
parent f4fa5084d9
commit 45272ceca4
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -1,9 +1,9 @@
package de.gnmyt.autoresponder.commands;
import de.gnmyt.autoresponder.entities.ChatCommandData;
import de.gnmyt.autoresponder.entities.GroupCommand;
public abstract class ResponderGroupCommand extends ResponderCommand {
public abstract void execute(ChatCommandData command, Arguments args, GroupAnswerController controller);
public abstract void execute(GroupCommand command, Arguments args);
}