diff options
author | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2021-12-29 03:53:38 +0300 |
---|---|---|
committer | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2021-12-29 03:53:38 +0300 |
commit | d36f4449c94b942d1795ae4865b77b7fde43b35b (patch) | |
tree | c751e7bf7888c1a660b62b8df7badf841c12c2e2 /telegram/formatter | |
parent | f2f20e680bb06ebda76f67f8fae9d7ed12498c63 (diff) |
Temporarily switch to a fork of 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 2946a55..355d393 100644 --- a/telegram/formatter/formatter.go +++ b/telegram/formatter/formatter.go @@ -4,7 +4,7 @@ import ( "sort" log "github.com/sirupsen/logrus" - "github.com/zelenin/go-tdlib/client" + "github.com/godcong/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 63337d6..5c93ea0 100644 --- a/telegram/formatter/formatter_test.go +++ b/telegram/formatter/formatter_test.go @@ -3,7 +3,7 @@ package formatter import ( "testing" - "github.com/zelenin/go-tdlib/client" + "github.com/godcong/go-tdlib/client" ) func TestNoFormatting(t *testing.T) { |