Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raph6/easytg
easy telegram send bot
https://github.com/raph6/easytg
bot telegram
Last synced: 1 day ago
JSON representation
easy telegram send bot
- Host: GitHub
- URL: https://github.com/raph6/easytg
- Owner: raph6
- Created: 2022-08-18T18:17:30.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-16T11:38:57.000Z (over 1 year ago)
- Last Synced: 2023-09-05T03:05:55.174Z (about 1 year ago)
- Topics: bot, telegram
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Easy Telegram for Golang
## How to use
```go
import "github.com/raph6/easytg"func main() {
bot := easytg.NewBot("xxxx_YOUR_API_KEY_xxxx")
bot.Msg("test", 99999999) // conversation id
err := bot.Send()
if err != nil {
...
}
}
```