Ecosyste.ms: Awesome
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: about 5 hours ago
JSON representation
a telegram bot
- Host: GitHub
- URL: https://github.com/sendya/review-bot
- Owner: sendya
- Created: 2019-05-31T02:15:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-21T23:25:09.000Z (almost 3 years ago)
- Last Synced: 2024-11-13T17:23:51.740Z (6 days ago)
- Language: Java
- Homepage:
- Size: 66.4 KB
- Stars: 2
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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...
}
}
```