1
0
Fork 0

🎨 Updated module paths

This commit is contained in:
Maxim Lebedev 2020-11-05 15:38:24 +05:00
parent 0e8561f7e6
commit a796d00b09
No known key found for this signature in database
GPG Key ID: F8978F46FF0FFA4F
4 changed files with 4 additions and 4 deletions

2
doc.go
View File

@ -1,2 +1,2 @@
// Package telegram contains bindings for the Telegram Bot API // Package telegram contains bindings for the Telegram Bot API
package telegram // import "gitlab.com/toby3d/telegram" package telegram // import "gitlab.com/toby3d/telegram/v5"

View File

@ -1,2 +1,2 @@
// Package login contains methods for obtaining structure of the user data and its validation. // Package login contains methods for obtaining structure of the user data and its validation.
package login // import "gitlab.com/toby3d/telegram/login" package login // import "gitlab.com/toby3d/telegram/v5/login"

View File

@ -6,7 +6,7 @@ import (
"github.com/fasthttp/router" "github.com/fasthttp/router"
http "github.com/valyala/fasthttp" http "github.com/valyala/fasthttp"
"gitlab.com/toby3d/telegram/login" "gitlab.com/toby3d/telegram/v5/login"
) )
const htmlTemplate string = `<!DOCTYPE html> const htmlTemplate string = `<!DOCTYPE html>

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"gitlab.com/toby3d/telegram/login" "gitlab.com/toby3d/telegram/v5/login"
"golang.org/x/text/language" "golang.org/x/text/language"
) )