Client is now a pointer

bot-api-6.1
Raul Santos 2015-07-28 11:18:49 +02:00
parent 8249dd6a93
commit fc8cb6e039
1 changed files with 6 additions and 6 deletions

12
bot.go
View File

@ -5,11 +5,11 @@ import "net/http"
// BotAPI has methods for interacting with all of Telegram's Bot API endpoints.
type BotAPI struct {
Token string `json:"token"`
Debug bool `json:"debug"`
Self User `json:"-"`
Updates chan Update `json:"-"`
Client http.Client `json:"-"`
Token string `json:"token"`
Debug bool `json:"debug"`
Self User `json:"-"`
Updates chan Update `json:"-"`
Client *http.Client `json:"-"`
}
// NewBotAPI creates a new BotAPI instance.
@ -21,7 +21,7 @@ func NewBotAPI(token string, client *http.Client) (*BotAPI, error) {
bot := &BotAPI{
Token: token,
Client: *client,
Client: client,
}
self, err := bot.GetMe()