Skip to content

Instantly share code, notes, and snippets.

@centralhardware
Created September 29, 2023 18:20
Show Gist options
  • Save centralhardware/f7794e3f6bab4f712d429fae45994882 to your computer and use it in GitHub Desktop.
Save centralhardware/f7794e3f6bab4f712d429fae45994882 to your computer and use it in GitHub Desktop.
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