Created the execute method in the ResponderGroupCommand

This commit is contained in:
mathias 2021-10-02 01:45:43 +02:00
parent 51652a2e2e
commit 9fb6381d77
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

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