Client is now a pointer
Raul Santos raulsntos@gmail.com
Tue, 28 Jul 2015 11:18:49 +0200
1 files changed,
6 insertions(+),
6 deletions(-)
jump to
M
bot.go
→
bot.go
@@ -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 @@ }
bot := &BotAPI{ Token: token, - Client: *client, + Client: client, } self, err := bot.GetMe()