all repos — telegram-bot-api @ 9cf4f13772aae8db75fe2b03f45e578a38eec965

Golang bindings for the Telegram Bot API

bot.go (view raw)

 1package tgbotapi
 2
 3type BotApi struct {
 4	Token   string      `json:"token"`
 5	Debug   bool        `json:"debug"`
 6	Updates chan Update `json:"-"`
 7}
 8
 9func NewBotApi(token string) *BotApi {
10	return &BotApi{
11		Token: token,
12	}
13}