/review-bot

a telegram bot

Primary LanguageJava

Getting Started

Handle command

@BotCommand(command = "/test")
class TestCommand extends Command {
    
    public boolean accept(Update update, TelegramLongPollingBot bot) {
        // do something...
    }
}