Created
September 29, 2023 18:20
-
-
Save centralhardware/f7794e3f6bab4f712d429fae45994882 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package me.centralhardware.znatoki.telegram.statistic.telegram; | |
import org.telegram.telegrambots.meta.api.objects.Update; | |
public interface Handler { | |
void handle(Update update); | |
boolean isAcceptable(String data); | |
boolean isAcceptable(Update update); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment