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
- Host: GitHub
- URL: https://github.com/sendya/review-bot
- Owner: sendya
- Created: 2019-05-31T02:15:42.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-21T23:25:09.000Z (over 4 years ago)
- Last Synced: 2025-10-30T16:58:22.961Z (8 months ago)
- Language: Java
- Homepage:
- Size: 66.4 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- 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...
}
}
```