Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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 {
...
}
}
```