all repos — telegram-bot-api @ baf170548c7ebc221cd82c3d1a121d8b218786ac

Golang bindings for the Telegram Bot API

Update README for v2
Syfaro syfaro@foxpaw.in
Mon, 04 Jan 2016 14:55:04 -0600
commit

baf170548c7ebc221cd82c3d1a121d8b218786ac

parent

b7c9b5002015dbd29e5de7c67491ef8c9a0f4908

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M README.mdREADME.md

@@ -17,7 +17,7 @@ something with plugins and command handlers without having to design

all that yourself. Use `github.com/go-telegram-bot-api/telegram-bot-api` for the latest -version, or use `gopkg.in/telegram-bot-api.v1` for the stable build. +version, or use `gopkg.in/telegram-bot-api.v2` for the stable build. ## Example

@@ -29,7 +29,7 @@ package main

import ( "log" - "gopkg.in/telegram-bot-api.v1" + "gopkg.in/telegram-bot-api.v2" ) func main() {

@@ -65,7 +65,7 @@ ```go

package main import ( - "gopkg.in/telegram-bot-api.v1" + "gopkg.in/telegram-bot-api.v2" "log" "net/http" )