Converted to module and renamed

pull/281/head
Sergey Parshukov 6 years ago
parent b2775f9bda
commit b008ebe59e
No known key found for this signature in database
GPG Key ID: 9D0FB8D5E702923A
  1. 3
      README.md
  2. 2
      bot_test.go
  3. 5
      go.mod
  4. 2
      go.sum
  5. 3
      helpers_test.go
  6. 2
      types_test.go

@ -1,7 +1,6 @@
# Golang bindings for the Telegram Bot API # Golang bindings for the Telegram Bot API
[![GoDoc](https://godoc.org/github.com/go-telegram-bot-api/telegram-bot-api?status.svg)](http://godoc.org/github.com/go-telegram-bot-api/telegram-bot-api) This is an internal fork of https://github.com/go-telegram-bot-api/telegram-bot-api
[![Travis](https://travis-ci.org/go-telegram-bot-api/telegram-bot-api.svg)](https://travis-ci.org/go-telegram-bot-api/telegram-bot-api)
All methods are fairly self explanatory, and reading the godoc page should All methods are fairly self explanatory, and reading the godoc page should
explain everything. If something isn't clear, open an issue or submit explain everything. If something isn't clear, open an issue or submit

@ -8,7 +8,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/go-telegram-bot-api/telegram-bot-api" tgbotapi "github.com/Shimbo/got"
) )
const ( const (

@ -0,0 +1,5 @@
module github.com/Shimbo/got
go 1.12
require github.com/technoweenie/multipartstreamer v1.0.1

@ -0,0 +1,2 @@
github.com/technoweenie/multipartstreamer v1.0.1 h1:XRztA5MXiR1TIRHxH2uNxXxaIkKQDeX7m2XsSOlQEnM=
github.com/technoweenie/multipartstreamer v1.0.1/go.mod h1:jNVxdtShOxzAsukZwTSw6MDx5eUJoiEBsSvzDU9uzog=

@ -1,8 +1,9 @@
package tgbotapi_test package tgbotapi_test
import ( import (
"github.com/go-telegram-bot-api/telegram-bot-api"
"testing" "testing"
tgbotapi "github.com/Shimbo/got"
) )
func TestNewInlineQueryResultArticle(t *testing.T) { func TestNewInlineQueryResultArticle(t *testing.T) {

@ -4,7 +4,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/go-telegram-bot-api/telegram-bot-api" tgbotapi "github.com/Shimbo/got"
) )
func TestUserStringWith(t *testing.T) { func TestUserStringWith(t *testing.T) {