An open API service indexing awesome lists of open source software.

https://github.com/sendya/review-bot

a telegram bot
https://github.com/sendya/review-bot

Last synced: 5 months ago
JSON representation

a telegram bot

Awesome Lists containing this project

README

          

# Getting Started

### Handle command

```java
@BotCommand(command = "/test")
class TestCommand extends Command {

public boolean accept(Update update, TelegramLongPollingBot bot) {
// do something...
}
}
```