Created the execute method in the ResponderChatCommand

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

View File

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