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

https://github.com/vadviktor/telegram-msg

Very basic Telegram BOT message sender.
https://github.com/vadviktor/telegram-msg

go golang library telegram-bot-api

Last synced: 6 months ago
JSON representation

Very basic Telegram BOT message sender.

Awesome Lists containing this project

README

          

# telegram-msg

Telegram BOT message sending library for Go (pretty basic).

```go
package main

import "github.com/vadviktor/telegram-msg"

func main() {
s := &telegram_msg.Telegram{}
s.Create("someBotApiToken", 12345)
s.Send("I can send plain fmt.Println.")
s.Send("I can act like %s too.", "fmt.Sprintf")
s.SendSilent("I can send silent messages the won't have notifications.")
}
```