diff options
author | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2022-01-17 23:45:40 +0300 |
---|---|---|
committer | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2022-01-17 23:45:40 +0300 |
commit | 6eb0e5f15fd9a81bbafb2189dd73b6c093b487e6 (patch) | |
tree | 802c64e7e0b2c9a349858d5ea106f983eb1cc6ea /telegram/formatter | |
parent | 0b79d6feb1e3d2f87753a1808acbb148a346eeec (diff) |
Migrate back to the upstream go-tdlib
Diffstat (limited to 'telegram/formatter')
-rw-r--r-- | telegram/formatter/formatter.go | 2 | ||||
-rw-r--r-- | telegram/formatter/formatter_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/telegram/formatter/formatter.go b/telegram/formatter/formatter.go index 355d393..2946a55 100644 --- a/telegram/formatter/formatter.go +++ b/telegram/formatter/formatter.go @@ -4,7 +4,7 @@ import ( "sort" log "github.com/sirupsen/logrus" - "github.com/godcong/go-tdlib/client" + "github.com/zelenin/go-tdlib/client" ) // Insertion is a piece of text in given position diff --git a/telegram/formatter/formatter_test.go b/telegram/formatter/formatter_test.go index 5c93ea0..63337d6 100644 --- a/telegram/formatter/formatter_test.go +++ b/telegram/formatter/formatter_test.go @@ -3,7 +3,7 @@ package formatter import ( "testing" - "github.com/godcong/go-tdlib/client" + "github.com/zelenin/go-tdlib/client" ) func TestNoFormatting(t *testing.T) { |