https://github.com/raph6/easytg
easy telegram send bot
https://github.com/raph6/easytg
bot telegram
Last synced: over 1 year ago
JSON representation
easy telegram send bot
- Host: GitHub
- URL: https://github.com/raph6/easytg
- Owner: raph6
- Created: 2022-08-18T18:17:30.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T06:27:44.000Z (over 1 year ago)
- Last Synced: 2025-01-12T17:14:33.754Z (over 1 year ago)
- Topics: bot, telegram
- Language: Go
- Homepage:
- Size: 5.86 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 {
...
}
}
```