🎨 Updated module paths
This commit is contained in:
parent
0e8561f7e6
commit
a796d00b09
4 changed files with 4 additions and 4 deletions
2
doc.go
2
doc.go
|
@ -1,2 +1,2 @@
|
|||
// Package telegram contains bindings for the Telegram Bot API
|
||||
package telegram // import "gitlab.com/toby3d/telegram"
|
||||
package telegram // import "gitlab.com/toby3d/telegram/v5"
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
// 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"
|
||||
|
|
|
@ -6,7 +6,7 @@ import (
|
|||
|
||||
"github.com/fasthttp/router"
|
||||
http "github.com/valyala/fasthttp"
|
||||
"gitlab.com/toby3d/telegram/login"
|
||||
"gitlab.com/toby3d/telegram/v5/login"
|
||||
)
|
||||
|
||||
const htmlTemplate string = `<!DOCTYPE html>
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"gitlab.com/toby3d/telegram/login"
|
||||
"gitlab.com/toby3d/telegram/v5/login"
|
||||
"golang.org/x/text/language"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue