diff --git a/.golangci.yml b/.golangci.yml index 6225d79358..e671fccbc7 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -20,7 +20,7 @@ linters-settings: lll: line-length: 140 goimports: - local-prefixes: github.com/gotd/ + local-prefixes: github.com/beeper/ gocritic: enabled-tags: - diagnostic diff --git a/_tools/go.mod b/_tools/go.mod index 12eb707670..c12117d9c7 100644 --- a/_tools/go.mod +++ b/_tools/go.mod @@ -1,4 +1,4 @@ -module github.com/gotd/td/_tools +module github.com/beeper/td/_tools go 1.22.0 diff --git a/bin/buffer_test.go b/bin/buffer_test.go index b55d456071..fc5d2dc7ae 100644 --- a/bin/buffer_test.go +++ b/bin/buffer_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" + "github.com/beeper/td/testutil" ) func TestExpandReset(t *testing.T) { diff --git a/bin/encode_bench_test.go b/bin/encode_bench_test.go index c61027cf0a..822494ee15 100644 --- a/bin/encode_bench_test.go +++ b/bin/encode_bench_test.go @@ -3,10 +3,10 @@ package bin_test import ( "testing" - "github.com/gotd/td/bin" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func BenchmarkDecodeSlice(b *testing.B) { diff --git a/cmd/connclose/main.go b/cmd/connclose/main.go index a1ca1dc532..341776ed53 100644 --- a/cmd/connclose/main.go +++ b/cmd/connclose/main.go @@ -9,9 +9,9 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/tg" ) func run(ctx context.Context) error { diff --git a/cmd/dlkey/main.go b/cmd/dlkey/main.go index c4292060ef..893c7be582 100644 --- a/cmd/dlkey/main.go +++ b/cmd/dlkey/main.go @@ -10,7 +10,7 @@ import ( "os" "path" - "github.com/gotd/td/keyparser" + "github.com/beeper/td/keyparser" ) func main() { diff --git a/cmd/dltl/main.go b/cmd/dltl/main.go index 3ad4afedd9..e8554d78e4 100644 --- a/cmd/dltl/main.go +++ b/cmd/dltl/main.go @@ -15,7 +15,7 @@ import ( "strconv" "strings" - "github.com/gotd/tl" + "github.com/beeper/tl" ) func mergeSchema(target, s *tl.Schema) { diff --git a/cmd/dscidr/main.go b/cmd/dscidr/main.go index 909ebc2af2..ebd85afc81 100644 --- a/cmd/dscidr/main.go +++ b/cmd/dscidr/main.go @@ -7,7 +7,7 @@ import ( "gopkg.in/yaml.v3" - "github.com/gotd/td/telegram/dcs" + "github.com/beeper/td/telegram/dcs" ) type CIDRElement struct { diff --git a/cmd/gotdecho/main.go b/cmd/gotdecho/main.go index c301edeba7..36f1588730 100644 --- a/cmd/gotdecho/main.go +++ b/cmd/gotdecho/main.go @@ -10,9 +10,9 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/tg" ) func run(ctx context.Context) error { diff --git a/cmd/gotdgen/main.go b/cmd/gotdgen/main.go index 3f02f489b6..afe17c60e1 100644 --- a/cmd/gotdgen/main.go +++ b/cmd/gotdgen/main.go @@ -12,7 +12,7 @@ import ( "github.com/gotd/tl" - "github.com/gotd/td/gen" + "github.com/beeper/td/gen" ) type formattedSource struct { diff --git a/cmd/mtprint/main.go b/cmd/mtprint/main.go index ba78a3bf45..928c570ed1 100644 --- a/cmd/mtprint/main.go +++ b/cmd/mtprint/main.go @@ -6,7 +6,7 @@ import ( "io" "os" - "github.com/gotd/td/proto/codec" + "github.com/beeper/td/proto/codec" ) func main() { diff --git a/cmd/mtprint/printer.go b/cmd/mtprint/printer.go index 5103252e5b..8a14acec75 100644 --- a/cmd/mtprint/printer.go +++ b/cmd/mtprint/printer.go @@ -8,13 +8,13 @@ import ( "github.com/go-faster/errors" "github.com/k0kubun/pp/v3" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tg" - "github.com/gotd/td/tmap" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tg" + "github.com/beeper/td/tmap" + "github.com/beeper/td/transport" ) // Object is abstraction for TL schema object. diff --git a/cmd/mtprint/printer_test.go b/cmd/mtprint/printer_test.go index 007c92eccd..1b899b9f84 100644 --- a/cmd/mtprint/printer_test.go +++ b/cmd/mtprint/printer_test.go @@ -6,10 +6,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/tg" ) func Test_readAndPrint(t *testing.T) { diff --git a/cmd/rsagen/_example/generate.go b/cmd/rsagen/_example/generate.go index 0dd7c134f5..401288c3f0 100644 --- a/cmd/rsagen/_example/generate.go +++ b/cmd/rsagen/_example/generate.go @@ -1,10 +1,10 @@ package example -//go:generate go run github.com/gotd/td/cmd/rsagen -f single.pem -single -pkg example -var SinglePK -o rsagen_single.go -//go:generate go run github.com/gotd/td/cmd/rsagen -f single.pem -single -pkg example -var SinglePK -o rsagen_single_test.go -exec test.tmpl +//go:generate go run github.com/beeper/td/cmd/rsagen -f single.pem -single -pkg example -var SinglePK -o rsagen_single.go +//go:generate go run github.com/beeper/td/cmd/rsagen -f single.pem -single -pkg example -var SinglePK -o rsagen_single_test.go -exec test.tmpl -//go:generate go run github.com/gotd/td/cmd/rsagen -f many.pem -pkg example -var ManyPK -o rsagen_many.go -//go:generate go run github.com/gotd/td/cmd/rsagen -f many.pem -pkg example -var ManyPK -o rsagen_many_test.go -exec test.tmpl +//go:generate go run github.com/beeper/td/cmd/rsagen -f many.pem -pkg example -var ManyPK -o rsagen_many.go +//go:generate go run github.com/beeper/td/cmd/rsagen -f many.pem -pkg example -var ManyPK -o rsagen_many_test.go -exec test.tmpl -//go:generate go run github.com/gotd/td/cmd/rsagen -pkg example -var EmptyPK -o rsagen_empty.go -//go:generate go run github.com/gotd/td/cmd/rsagen -pkg example -var EmptyPK -o rsagen_empty_test.go -exec test.tmpl +//go:generate go run github.com/beeper/td/cmd/rsagen -pkg example -var EmptyPK -o rsagen_empty.go +//go:generate go run github.com/beeper/td/cmd/rsagen -pkg example -var EmptyPK -o rsagen_empty_test.go -exec test.tmpl diff --git a/cmd/rsagen/_example/rsagen_empty_test.go b/cmd/rsagen/_example/rsagen_empty_test.go index 3cf45abdd7..9ab67e609b 100644 --- a/cmd/rsagen/_example/rsagen_empty_test.go +++ b/cmd/rsagen/_example/rsagen_empty_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) func TestFingerprintEmptyPK(t *testing.T) { diff --git a/cmd/rsagen/_example/rsagen_many_test.go b/cmd/rsagen/_example/rsagen_many_test.go index 5f0a7d642a..e77a3fe90c 100644 --- a/cmd/rsagen/_example/rsagen_many_test.go +++ b/cmd/rsagen/_example/rsagen_many_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) func TestFingerprintManyPK(t *testing.T) { diff --git a/cmd/rsagen/_example/rsagen_single_test.go b/cmd/rsagen/_example/rsagen_single_test.go index da6c902918..6ef96cbbea 100644 --- a/cmd/rsagen/_example/rsagen_single_test.go +++ b/cmd/rsagen/_example/rsagen_single_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) func TestFingerprintSinglePK(t *testing.T) { diff --git a/cmd/rsagen/_template/test.tmpl b/cmd/rsagen/_template/test.tmpl index c28ef78dac..dd94c03ae9 100644 --- a/cmd/rsagen/_template/test.tmpl +++ b/cmd/rsagen/_template/test.tmpl @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) func {{ .TestFunc }}(t *testing.T) { diff --git a/cmd/rsagen/main.go b/cmd/rsagen/main.go index e25a046dd0..2feebdf85b 100644 --- a/cmd/rsagen/main.go +++ b/cmd/rsagen/main.go @@ -18,7 +18,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) //go:embed _template/*.tmpl diff --git a/crypto/cipher_decrypt.go b/crypto/cipher_decrypt.go index 8d73c62d8e..dd678fa3ce 100644 --- a/crypto/cipher_decrypt.go +++ b/crypto/cipher_decrypt.go @@ -7,7 +7,7 @@ import ( "github.com/gotd/ige" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // DecryptFromBuffer decodes EncryptedMessage and decrypts it. diff --git a/crypto/cipher_decrypt_test.go b/crypto/cipher_decrypt_test.go index a016a7a255..ca5bb4fe08 100644 --- a/crypto/cipher_decrypt_test.go +++ b/crypto/cipher_decrypt_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/testutil" ) func TestDecrypt(t *testing.T) { diff --git a/crypto/cipher_encrypt.go b/crypto/cipher_encrypt.go index e8f61a99b6..cb6d715539 100644 --- a/crypto/cipher_encrypt.go +++ b/crypto/cipher_encrypt.go @@ -6,7 +6,7 @@ import ( "github.com/gotd/ige" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func countPadding(l int) int { return 16 + (16 - (l % 16)) } diff --git a/crypto/cipher_encrypt_test.go b/crypto/cipher_encrypt_test.go index 9a72acf92b..0d877ac88d 100644 --- a/crypto/cipher_encrypt_test.go +++ b/crypto/cipher_encrypt_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/testutil" ) func TestEncrypt(t *testing.T) { diff --git a/crypto/cipher_test.go b/crypto/cipher_test.go index 2ef74d0052..42e586431a 100644 --- a/crypto/cipher_test.go +++ b/crypto/cipher_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) var testAuthKey = Key{ diff --git a/crypto/encrypted_message.go b/crypto/encrypted_message.go index 9b89397d76..8d32327c31 100644 --- a/crypto/encrypted_message.go +++ b/crypto/encrypted_message.go @@ -1,6 +1,6 @@ package crypto -import "github.com/gotd/td/bin" +import "github.com/beeper/td/bin" // EncryptedMessage of protocol. type EncryptedMessage struct { diff --git a/crypto/encrypted_message_data.go b/crypto/encrypted_message_data.go index dad8dd7e3b..73e28035c2 100644 --- a/crypto/encrypted_message_data.go +++ b/crypto/encrypted_message_data.go @@ -3,7 +3,7 @@ package crypto import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // EncryptedMessageData is stored in EncryptedMessage.EncryptedData. diff --git a/crypto/encrypted_message_data_test.go b/crypto/encrypted_message_data_test.go index 21817d00ef..c2b1910fdb 100644 --- a/crypto/encrypted_message_data_test.go +++ b/crypto/encrypted_message_data_test.go @@ -3,7 +3,7 @@ package crypto import ( "testing" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" "github.com/stretchr/testify/require" ) diff --git a/crypto/encrypted_message_test.go b/crypto/encrypted_message_test.go index 6ec9b4fafd..14e6ec88e3 100644 --- a/crypto/encrypted_message_test.go +++ b/crypto/encrypted_message_test.go @@ -4,7 +4,7 @@ import ( "math/big" "testing" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func TestEncryptedMessage_Encode(t *testing.T) { diff --git a/crypto/exchange.go b/crypto/exchange.go index a8e835fa51..4cc341fb31 100644 --- a/crypto/exchange.go +++ b/crypto/exchange.go @@ -8,7 +8,7 @@ import ( "github.com/go-faster/errors" "github.com/gotd/ige" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // DecryptExchangeAnswer decrypts messages created during key exchange. diff --git a/crypto/fuzz_test.go b/crypto/fuzz_test.go index e2d6d3d945..eacb0cfe30 100644 --- a/crypto/fuzz_test.go +++ b/crypto/fuzz_test.go @@ -7,7 +7,7 @@ import ( "math/rand" "testing" - "github.com/gotd/td/testutil" + "github.com/beeper/td/testutil" ) func FuzzRSA(f *testing.F) { diff --git a/crypto/key_test.go b/crypto/key_test.go index 58d4eda287..20c0c2379c 100644 --- a/crypto/key_test.go +++ b/crypto/key_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func TestAuthKeyID(t *testing.T) { diff --git a/crypto/keys.go b/crypto/keys.go index b1af1650ee..37a15df380 100644 --- a/crypto/keys.go +++ b/crypto/keys.go @@ -3,7 +3,7 @@ package crypto import ( "crypto/sha256" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Side on which encryption is performed. diff --git a/crypto/keys_old.go b/crypto/keys_old.go index 5bf65c9129..57ada0ffb1 100644 --- a/crypto/keys_old.go +++ b/crypto/keys_old.go @@ -3,7 +3,7 @@ package crypto import ( "crypto/sha1" // #nosec G505 - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // sha1a returns sha1_a value. diff --git a/crypto/keys_old_test.go b/crypto/keys_old_test.go index 65d1991a18..0d07a40a55 100644 --- a/crypto/keys_old_test.go +++ b/crypto/keys_old_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/require" "github.com/gotd/ige" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func TestOldKeys(t *testing.T) { diff --git a/crypto/keys_test.go b/crypto/keys_test.go index 6762252b35..26a003fe02 100644 --- a/crypto/keys_test.go +++ b/crypto/keys_test.go @@ -5,8 +5,8 @@ import ( "io" "testing" - "github.com/gotd/td/bin" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/testutil" ) func genMessageAndAuthKeys() (Key, bin.Int128) { diff --git a/crypto/rand.go b/crypto/rand.go index 4236a1adf8..bda056d154 100644 --- a/crypto/rand.go +++ b/crypto/rand.go @@ -3,7 +3,7 @@ package crypto import ( "io" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // RandInt64n returns random int64 from randSource in [0; n). diff --git a/crypto/rsa_fingerprint.go b/crypto/rsa_fingerprint.go index 4e4759d4f1..22938ce622 100644 --- a/crypto/rsa_fingerprint.go +++ b/crypto/rsa_fingerprint.go @@ -6,7 +6,7 @@ import ( "encoding/binary" "math/big" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // RSAFingerprint returns fingerprint of RSA public key as defined in MTProto. diff --git a/crypto/rsa_pad.go b/crypto/rsa_pad.go index 390e871072..153e480499 100644 --- a/crypto/rsa_pad.go +++ b/crypto/rsa_pad.go @@ -12,7 +12,7 @@ import ( "github.com/go-faster/xor" "github.com/gotd/ige" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func reverseBytes(s []byte) { diff --git a/crypto/rsa_pad_test.go b/crypto/rsa_pad_test.go index eaab0b386b..f319eaaabf 100644 --- a/crypto/rsa_pad_test.go +++ b/crypto/rsa_pad_test.go @@ -10,7 +10,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" + "github.com/beeper/td/testutil" ) func TestRSAPad(t *testing.T) { diff --git a/crypto/salt.go b/crypto/salt.go index f0a7f70ac5..126ff0d414 100644 --- a/crypto/salt.go +++ b/crypto/salt.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/xor" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // ServerSalt computes server salt. diff --git a/crypto/srp/new_hash_test.go b/crypto/srp/new_hash_test.go index e44673f83d..ab31d8bdf6 100644 --- a/crypto/srp/new_hash_test.go +++ b/crypto/srp/new_hash_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" + "github.com/beeper/td/testutil" ) func TestSRP_NewHash(t *testing.T) { diff --git a/crypto/srp/pad.go b/crypto/srp/pad.go index 3b3f199677..acbc0cef9b 100644 --- a/crypto/srp/pad.go +++ b/crypto/srp/pad.go @@ -3,7 +3,7 @@ package srp import ( "math/big" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) func (s SRP) pad256FromBig(i *big.Int) (b [256]byte, r bool) { diff --git a/crypto/srp/srp.go b/crypto/srp/srp.go index e76a02dc9e..be1fb0bd41 100644 --- a/crypto/srp/srp.go +++ b/crypto/srp/srp.go @@ -8,7 +8,7 @@ import ( "github.com/go-faster/xor" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) // SRP is client implementation of Secure Remote Password protocol. diff --git a/examples/bg-run/main.go b/examples/bg-run/main.go index 372d7a3868..3ecc7ca45b 100644 --- a/examples/bg-run/main.go +++ b/examples/bg-run/main.go @@ -6,10 +6,10 @@ import ( "go.uber.org/zap" - "github.com/gotd/contrib/bg" + "github.com/beeper/contrib/bg" - "github.com/gotd/td/examples" - "github.com/gotd/td/telegram" + "github.com/beeper/td/examples" + "github.com/beeper/td/telegram" ) func main() { diff --git a/examples/bot-auth-manual/main.go b/examples/bot-auth-manual/main.go index 86c7592686..28c43a0933 100644 --- a/examples/bot-auth-manual/main.go +++ b/examples/bot-auth-manual/main.go @@ -9,9 +9,9 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/examples" - "github.com/gotd/td/session" - "github.com/gotd/td/telegram" + "github.com/beeper/td/examples" + "github.com/beeper/td/session" + "github.com/beeper/td/telegram" ) // memorySession implements in-memory session storage. diff --git a/examples/bot-echo/main.go b/examples/bot-echo/main.go index bf50fd268e..ddd7d0df00 100644 --- a/examples/bot-echo/main.go +++ b/examples/bot-echo/main.go @@ -6,10 +6,10 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/examples" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/tg" + "github.com/beeper/td/examples" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/tg" ) func main() { diff --git a/examples/bot-upload/main.go b/examples/bot-upload/main.go index 7603116366..8cb5f92f3b 100644 --- a/examples/bot-upload/main.go +++ b/examples/bot-upload/main.go @@ -10,12 +10,12 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/examples" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/html" - "github.com/gotd/td/telegram/uploader" - "github.com/gotd/td/tg" + "github.com/beeper/td/examples" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/html" + "github.com/beeper/td/telegram/uploader" + "github.com/beeper/td/tg" ) func main() { diff --git a/examples/examples.go b/examples/examples.go index 57304ea537..fff55bc82e 100644 --- a/examples/examples.go +++ b/examples/examples.go @@ -2,5 +2,5 @@ package examples import ( - _ "github.com/gotd/td" + _ "github.com/beeper/td" ) diff --git a/examples/gif-download/main.go b/examples/gif-download/main.go index 320cd79c04..b8795fccd5 100644 --- a/examples/gif-download/main.go +++ b/examples/gif-download/main.go @@ -11,19 +11,19 @@ import ( "time" "github.com/go-faster/errors" - "github.com/gotd/contrib/middleware/ratelimit" + "github.com/beeper/contrib/middleware/ratelimit" "go.uber.org/atomic" "go.uber.org/zap" "go.uber.org/zap/zapcore" "golang.org/x/sync/errgroup" "golang.org/x/time/rate" - "github.com/gotd/td/examples" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/telegram/downloader" - "github.com/gotd/td/telegram/query/hasher" - "github.com/gotd/td/tg" + "github.com/beeper/td/examples" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/telegram/downloader" + "github.com/beeper/td/telegram/query/hasher" + "github.com/beeper/td/tg" ) func run(ctx context.Context) error { diff --git a/examples/gif-download/upload.go b/examples/gif-download/upload.go index a27dd90609..94edb5da09 100644 --- a/examples/gif-download/upload.go +++ b/examples/gif-download/upload.go @@ -9,10 +9,10 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/unpack" - "github.com/gotd/td/telegram/uploader" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/unpack" + "github.com/beeper/td/telegram/uploader" + "github.com/beeper/td/tg" ) // upload lists inputDir and uploads all ".mp4" files to saved gifs. diff --git a/examples/go.mod b/examples/go.mod index 1c565b69c4..dcd11f563b 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -1,4 +1,4 @@ -module github.com/gotd/td/examples +module github.com/beeper/td/examples go 1.23.3 @@ -6,7 +6,7 @@ require ( github.com/cockroachdb/pebble v1.1.0 github.com/go-faster/errors v0.7.1 github.com/gotd/contrib v0.20.0 - github.com/gotd/td v0.99.2 + github.com/beeper/td v0.99.2 github.com/joho/godotenv v1.5.1 go.etcd.io/bbolt v1.3.9 go.uber.org/atomic v1.11.0 @@ -57,4 +57,4 @@ require ( rsc.io/qr v0.2.0 // indirect ) -replace github.com/gotd/td => ./.. +replace github.com/beeper/td => ./.. diff --git a/examples/pretty-print/main.go b/examples/pretty-print/main.go index 40ff01aa28..ccd7bba568 100644 --- a/examples/pretty-print/main.go +++ b/examples/pretty-print/main.go @@ -8,11 +8,11 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/examples" - "github.com/gotd/td/tdp" - "github.com/gotd/td/telegram" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/examples" + "github.com/beeper/td/tdp" + "github.com/beeper/td/telegram" + "github.com/beeper/td/tg" ) // prettyMiddleware pretty-prints request and response. diff --git a/examples/terminal.go b/examples/terminal.go index 922b21776a..144c88ac26 100644 --- a/examples/terminal.go +++ b/examples/terminal.go @@ -11,8 +11,8 @@ import ( "golang.org/x/term" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/tg" ) // Terminal implements auth.UserAuthenticator prompting the terminal for diff --git a/examples/updates/main.go b/examples/updates/main.go index cd8d4959e0..7da8d23d83 100644 --- a/examples/updates/main.go +++ b/examples/updates/main.go @@ -9,12 +9,12 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" - "github.com/gotd/td/examples" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/telegram/updates" - updhook "github.com/gotd/td/telegram/updates/hook" - "github.com/gotd/td/tg" + "github.com/beeper/td/examples" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/telegram/updates" + updhook "github.com/beeper/td/telegram/updates/hook" + "github.com/beeper/td/tg" ) func main() { diff --git a/examples/userbot/main.go b/examples/userbot/main.go index 75f63cf1c7..b53cf2a397 100644 --- a/examples/userbot/main.go +++ b/examples/userbot/main.go @@ -24,13 +24,13 @@ import ( "golang.org/x/time/rate" lj "gopkg.in/natefinch/lumberjack.v2" - "github.com/gotd/td/examples" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/telegram/query" - "github.com/gotd/td/telegram/updates" - "github.com/gotd/td/tg" + "github.com/beeper/td/examples" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/telegram/query" + "github.com/beeper/td/telegram/updates" + "github.com/beeper/td/tg" ) func sessionFolder(phone string) string { diff --git a/exchange/client.go b/exchange/client.go index 2e3861c88f..4a363ef17d 100644 --- a/exchange/client.go +++ b/exchange/client.go @@ -5,7 +5,7 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) // ClientExchange is a client-side key exchange flow. diff --git a/exchange/client_flow.go b/exchange/client_flow.go index 0db90b038a..b1122015b3 100644 --- a/exchange/client_flow.go +++ b/exchange/client_flow.go @@ -8,10 +8,10 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" ) // Run runs client-side flow. diff --git a/exchange/client_flow_test.go b/exchange/client_flow_test.go index ed848564d0..3a833a9e3a 100644 --- a/exchange/client_flow_test.go +++ b/exchange/client_flow_test.go @@ -11,9 +11,9 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/transport" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/transport" ) func TestExchangeTimeout(t *testing.T) { diff --git a/exchange/flow.go b/exchange/flow.go index e361cfd799..1f4fd3b55b 100644 --- a/exchange/flow.go +++ b/exchange/flow.go @@ -8,10 +8,10 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/clock" - "github.com/gotd/td/crypto" - "github.com/gotd/td/proto" - "github.com/gotd/td/transport" + "github.com/beeper/td/clock" + "github.com/beeper/td/crypto" + "github.com/beeper/td/proto" + "github.com/beeper/td/transport" ) // DefaultTimeout is default WithTimeout parameter value. diff --git a/exchange/flow_test.go b/exchange/flow_test.go index 316a70b270..b21d6c6677 100644 --- a/exchange/flow_test.go +++ b/exchange/flow_test.go @@ -12,10 +12,10 @@ import ( "go.uber.org/zap/zaptest" "golang.org/x/sync/errgroup" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/testutil" - "github.com/gotd/td/transport" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/testutil" + "github.com/beeper/td/transport" ) func testExchange(rsaPad bool) func(t *testing.T) { diff --git a/exchange/fuzz_test.go b/exchange/fuzz_test.go index a0a771e02a..f1d981191e 100644 --- a/exchange/fuzz_test.go +++ b/exchange/fuzz_test.go @@ -10,8 +10,8 @@ import ( "go.uber.org/zap" "golang.org/x/sync/errgroup" - "github.com/gotd/td/testutil" - "github.com/gotd/td/transport" + "github.com/beeper/td/testutil" + "github.com/beeper/td/transport" ) func FuzzValid(f *testing.F) { diff --git a/exchange/generator.go b/exchange/generator.go index c29c5abe53..de332c11cd 100644 --- a/exchange/generator.go +++ b/exchange/generator.go @@ -8,7 +8,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) // ServerRNG is server-side random number generator. diff --git a/exchange/key.go b/exchange/key.go index 4a54669cf5..7b85c9b257 100644 --- a/exchange/key.go +++ b/exchange/key.go @@ -3,7 +3,7 @@ package exchange import ( "crypto/rsa" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) // PublicKey is a public Telegram server key. diff --git a/exchange/proto.go b/exchange/proto.go index f9afda9912..92ffde3611 100644 --- a/exchange/proto.go +++ b/exchange/proto.go @@ -6,11 +6,11 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/clock" - "github.com/gotd/td/proto" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/clock" + "github.com/beeper/td/proto" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/transport" ) type unencryptedWriter struct { diff --git a/exchange/server.go b/exchange/server.go index f8f80da871..57fdc7ae50 100644 --- a/exchange/server.go +++ b/exchange/server.go @@ -5,7 +5,7 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) // ServerExchange is a server-side key exchange flow. diff --git a/exchange/server_flow.go b/exchange/server_flow.go index b6337e32f4..ee1ca2d319 100644 --- a/exchange/server_flow.go +++ b/exchange/server_flow.go @@ -7,10 +7,10 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto/codec" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto/codec" ) // ServerExchangeError is returned when exchange fails due to diff --git a/fileid/decode.go b/fileid/decode.go index ca66d67502..8a90ea0ede 100644 --- a/fileid/decode.go +++ b/fileid/decode.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) const ( diff --git a/fileid/e2e_test.go b/fileid/e2e_test.go index 294757ca9e..ef7e624b02 100644 --- a/fileid/e2e_test.go +++ b/fileid/e2e_test.go @@ -10,10 +10,10 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zaptest" - "github.com/gotd/td/fileid" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/downloader" - "github.com/gotd/td/testutil" + "github.com/beeper/td/fileid" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/downloader" + "github.com/beeper/td/testutil" ) func runBot(ctx context.Context, token, fileID string, logger *zap.Logger) error { diff --git a/fileid/encode.go b/fileid/encode.go index 0eb0389bf9..5935bbcb50 100644 --- a/fileid/encode.go +++ b/fileid/encode.go @@ -3,7 +3,7 @@ package fileid import ( "encoding/base64" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // EncodeFileID parses FileID to a string. diff --git a/fileid/file_id.go b/fileid/file_id.go index b53da171ad..e792ce02fd 100644 --- a/fileid/file_id.go +++ b/fileid/file_id.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // FileID represents parsed Telegram Bot API file_id. diff --git a/fileid/file_id_fuzz_test.go b/fileid/file_id_fuzz_test.go index 013129e3d1..87832a5ec7 100644 --- a/fileid/file_id_fuzz_test.go +++ b/fileid/file_id_fuzz_test.go @@ -9,7 +9,7 @@ import ( "github.com/k0kubun/pp/v3" "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func FuzzDecodeEncodeDecode(f *testing.F) { diff --git a/fileid/from.go b/fileid/from.go index f01f585390..4537159b18 100644 --- a/fileid/from.go +++ b/fileid/from.go @@ -1,8 +1,8 @@ package fileid import ( - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) // FromDocument creates FileID from tg.Document. diff --git a/fileid/from_test.go b/fileid/from_test.go index 1889b73e1a..a50981b1b0 100644 --- a/fileid/from_test.go +++ b/fileid/from_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestFromDocument(t *testing.T) { diff --git a/fileid/into.go b/fileid/into.go index 564ac714e9..a417da0a6f 100644 --- a/fileid/into.go +++ b/fileid/into.go @@ -1,6 +1,6 @@ package fileid -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // AsInputWebFileLocation converts file ID to tg.InputWebFileLocationClass. func (f FileID) AsInputWebFileLocation() (tg.InputWebFileLocationClass, bool) { diff --git a/fileid/into_test.go b/fileid/into_test.go index 57b92166bc..a758a067d5 100644 --- a/fileid/into_test.go +++ b/fileid/into_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) func TestFileID_AsInputFileLocation(t *testing.T) { diff --git a/fileid/photo_size_source.go b/fileid/photo_size_source.go index 685ad9a604..bea773c863 100644 --- a/fileid/photo_size_source.go +++ b/fileid/photo_size_source.go @@ -3,9 +3,9 @@ package fileid import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) // PhotoSizeSource represents photo metadata stored in file_id. diff --git a/fileid/photo_size_source_test.go b/fileid/photo_size_source_test.go index b31d6c2f00..9b14a56cd6 100644 --- a/fileid/photo_size_source_test.go +++ b/fileid/photo_size_source_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func TestPhotoSizeSourceEncodeDecode(t *testing.T) { diff --git a/gen/_template/box.tmpl b/gen/_template/box.tmpl index 3d6ca06450..ae374fa80a 100644 --- a/gen/_template/box.tmpl +++ b/gen/_template/box.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.interfaceConfig*/ -}} +{{- /*gotype: github.com/beeper/td/gen.interfaceConfig*/ -}} {{ define "box" }}{{ $f := .Interface }} // Decode{{ $f.Func }} implements binary de-serialization for {{ $f.Name }}. func Decode{{ $f.Func }} (buf *bin.Buffer) ({{ $f.Name }}, error) { diff --git a/gen/_template/decode.tmpl b/gen/_template/decode.tmpl index ca4911ead5..e2ef7fd70b 100644 --- a/gen/_template/decode.tmpl +++ b/gen/_template/decode.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "decode" }}{{ $s := . }} // Decode implements bin.Decoder. func ({{ $s.Receiver }} *{{ $s.Name }}) Decode({{ $s.BufArg }} *bin.Buffer) error { diff --git a/gen/_template/decode_tdlib.tmpl b/gen/_template/decode_tdlib.tmpl index 7e4898ab3c..1f74355843 100644 --- a/gen/_template/decode_tdlib.tmpl +++ b/gen/_template/decode_tdlib.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "decode_tdlib_json" }}{{ $s := . }} // DecodeTDLibJSON implements tdjson.TDLibDecoder. func ({{ $s.Receiver }} *{{ $s.Name }}) DecodeTDLibJSON({{ $s.BufArg }} tdjson.Decoder) error { diff --git a/gen/_template/encode.tmpl b/gen/_template/encode.tmpl index 4d2e186556..c05b6b568b 100644 --- a/gen/_template/encode.tmpl +++ b/gen/_template/encode.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "encode" }}{{ $s := . }} // Encode implements bin.Encoder. func ({{ $s.Receiver }} *{{ $s.Name }}) Encode({{ $s.BufArg }} *bin.Buffer) error { diff --git a/gen/_template/encode_tdlib.tmpl b/gen/_template/encode_tdlib.tmpl index fb0f01a661..ec4fc1a38d 100644 --- a/gen/_template/encode_tdlib.tmpl +++ b/gen/_template/encode_tdlib.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "encode_tdlib_json" }}{{ $s := . }} // EncodeTDLibJSON implements tdjson.TDLibEncoder. func ({{ $s.Receiver }} *{{ $s.Name }}) EncodeTDLibJSON({{ $s.BufArg }} tdjson.Encoder) error { diff --git a/gen/_template/errors.tmpl b/gen/_template/errors.tmpl index a64178c385..cf3f0ff3ba 100644 --- a/gen/_template/errors.tmpl +++ b/gen/_template/errors.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.config*/ -}} +{{- /*gotype: github.com/beeper/td/gen.config*/ -}} {{ define "errors" }} {{ $pkg := $.Package }} diff --git a/gen/_template/field_mapping.tmpl b/gen/_template/field_mapping.tmpl index fcebecd61f..68e0010128 100644 --- a/gen/_template/field_mapping.tmpl +++ b/gen/_template/field_mapping.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structConfig*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structConfig*/ -}} {{ define "field_mapping" }}{{- $s := .Struct -}} {{- range $f := $s.Fields }}{{ if and (not $f.DoubleSlice) (ne ($f.Type) ("bin.Fields")) }} @@ -6,7 +6,7 @@ {{- $mappings := index ($.Config.Mappings) ($f.Type) -}} {{- range $mapping := $mappings }}{{- if (not $mapping.Constructor) }} -{{- /*gotype: github.com/gotd/td/gen.constructorMapping*/ -}} +{{- /*gotype: github.com/beeper/td/gen.constructorMapping*/ -}} // Get{{ $f.Name }}As{{ $mapping.MapperName }} returns mapped value of {{ $f.Name }} {{ if $f.Conditional }} {{- if not ($f.ConditionalBool) }}conditional field and // boolean which is true if field was set. diff --git a/gen/_template/fill_from.tmpl b/gen/_template/fill_from.tmpl index 8289dc891d..984e1eccf6 100644 --- a/gen/_template/fill_from.tmpl +++ b/gen/_template/fill_from.tmpl @@ -1,5 +1,5 @@ {{ define "fill_from" }}{{ $s := . }}{{ if $s.Fields }} -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} // FillFrom fills {{ $s.Name }} from given interface. func ({{ $s.Receiver }} *{{ $s.Name }}) FillFrom(from interface{ {{- range $f := $s.Fields }}{{ if ne ($f.Type) ("bin.Fields") }} @@ -7,7 +7,7 @@ func ({{ $s.Receiver }} *{{ $s.Name }}) FillFrom(from interface{ {{- end }}{{- end }} }) { {{- range $f := $s.Fields }}{{ if ne ($f.Type) ("bin.Fields") }} - {{- /*gotype: github.com/gotd/td/gen.fieldDef*/ -}} + {{- /*gotype: github.com/beeper/td/gen.fieldDef*/ -}} {{- if and ($f.Conditional) (not $f.ConditionalBool) }} if val, ok := from.Get{{ $f.Name }}(); ok { {{ $s.Receiver }}.{{ $f.Name }} = val diff --git a/gen/_template/getset.tmpl b/gen/_template/getset.tmpl index 3c6df0a1b3..34c35ca5f6 100644 --- a/gen/_template/getset.tmpl +++ b/gen/_template/getset.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "getset" }}{{ $s := . }} {{- range $f := $s.Fields }}{{ if ne ($f.Type) ("bin.Fields") }} diff --git a/gen/_template/header.tmpl b/gen/_template/header.tmpl index d8156c3d3a..f7f6eb967d 100644 --- a/gen/_template/header.tmpl +++ b/gen/_template/header.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.config*/ -}} +{{- /*gotype: github.com/beeper/td/gen.config*/ -}} {{ define "header" }} // Code generated by gotdgen, DO NOT EDIT. @@ -13,10 +13,10 @@ import ( "go.uber.org/multierr" -"github.com/gotd/td/bin" -"github.com/gotd/td/tdjson" -"github.com/gotd/td/tdp" -"github.com/gotd/td/tgerr" +"github.com/beeper/td/bin" +"github.com/beeper/td/tdjson" +"github.com/beeper/td/tdp" +"github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/_template/interface.tmpl b/gen/_template/interface.tmpl index e1d0f6a118..7150f7d75a 100644 --- a/gen/_template/interface.tmpl +++ b/gen/_template/interface.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.interfaceConfig*/ -}} +{{- /*gotype: github.com/beeper/td/gen.interfaceConfig*/ -}} {{ define "interface" }}{{ $f := .Interface }} // {{ $f.Name }}Name is schema name of {{ $f.Name }}. diff --git a/gen/_template/interface_mapping.tmpl b/gen/_template/interface_mapping.tmpl index 7bf2fcbbf4..a0f891aff3 100644 --- a/gen/_template/interface_mapping.tmpl +++ b/gen/_template/interface_mapping.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.interfaceDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.interfaceDef*/ -}} {{ define "interface_mapping" }}{{ $f := . }} {{ range $mapping := $f.Mappings -}} @@ -7,7 +7,7 @@ type {{ $mapping.Name }} interface { {{ template "class_interface_header" $f }} -{{ range $field := index ($f.SharedFields) ($mapping.MapperName) -}}{{- /*gotype: github.com/gotd/td/gen.fieldDef*/ -}} +{{ range $field := index ($f.SharedFields) ($mapping.MapperName) -}}{{- /*gotype: github.com/beeper/td/gen.fieldDef*/ -}} {{- template "print_comment" $field.Comment }} {{- if $field.Links }} {{- template "print_links" $field.Links }} diff --git a/gen/_template/interface_slice.tmpl b/gen/_template/interface_slice.tmpl index 8f5f3ccd21..375ca3b02f 100644 --- a/gen/_template/interface_slice.tmpl +++ b/gen/_template/interface_slice.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.interfaceDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.interfaceDef*/ -}} {{ define "interface_slice" }}{{ $f := . }} {{ template "slice" $f }} @@ -28,7 +28,7 @@ func (s {{ template "slice_name" $f }}) As{{ $s.Name }}() (to {{ template "slice {{ range $mapping := $f.Mappings }}{{- if (not $mapping.Constructor) }} {{- range $field := mapCollectableFields (index ($f.SharedFields) ($mapping.MapperName)) }} -{{- /*gotype: github.com/gotd/td/gen.fieldDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.fieldDef*/ -}} // Fill{{ $mapping.MapperName }}Map fills only {{ $mapping.MapperName }} constructors to given map. func (s {{ template "slice_name" $f }}) Fill{{ $mapping.MapperName }}{{ template "map_collector_name" $field }}Map(to map[{{ $field.Type }}]{{ template "print_mapper_type" $mapping }}) { for _, elem := range s { diff --git a/gen/_template/main.tmpl b/gen/_template/main.tmpl index 97b9808059..d393132a58 100644 --- a/gen/_template/main.tmpl +++ b/gen/_template/main.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.config*/ -}} +{{- /*gotype: github.com/beeper/td/gen.config*/ -}} {{ define "main" }} {{ $pkg := $.Package }} diff --git a/gen/_template/method.tmpl b/gen/_template/method.tmpl index f1529eb0d9..cda775a7b9 100644 --- a/gen/_template/method.tmpl +++ b/gen/_template/method.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "method" }}{{- $s := . -}}{{ if $s.Method }} // {{ $s.Method }} invokes method {{ $s.RawType }} returning error if any. {{- if $s.Docs }} diff --git a/gen/_template/registry.tmpl b/gen/_template/registry.tmpl index da476c14f6..470f326517 100644 --- a/gen/_template/registry.tmpl +++ b/gen/_template/registry.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.config*/ -}} +{{- /*gotype: github.com/beeper/td/gen.config*/ -}} {{ define "registry" }} {{ $pkg := $.Package }} diff --git a/gen/_template/set_flags.tmpl b/gen/_template/set_flags.tmpl index 3672114e15..66efdf14fa 100644 --- a/gen/_template/set_flags.tmpl +++ b/gen/_template/set_flags.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "set_flags" }}{{ $s := . }} {{- if hasFlags $s }} // SetFlags sets flags for non-zero fields. diff --git a/gen/_template/slices.tmpl b/gen/_template/slices.tmpl index f86f5a2e90..d408bed5f6 100644 --- a/gen/_template/slices.tmpl +++ b/gen/_template/slices.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.config*/ -}} +{{- /*gotype: github.com/beeper/td/gen.config*/ -}} {{ define "slices" }} //go:build !no_gotd_slices diff --git a/gen/_template/struct.tmpl b/gen/_template/struct.tmpl index 89de859b1d..e83c1d7ae2 100644 --- a/gen/_template/struct.tmpl +++ b/gen/_template/struct.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "struct" }}{{ $s := . }} // {{ $s.Comment }} {{- if $s.Docs }} diff --git a/gen/_template/struct_slice.tmpl b/gen/_template/struct_slice.tmpl index 6616172268..3e36b4a5b4 100644 --- a/gen/_template/struct_slice.tmpl +++ b/gen/_template/struct_slice.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "struct_slice" }}{{ $f := . }} {{ template "slice" $f }} diff --git a/gen/_template/type_info.tmpl b/gen/_template/type_info.tmpl index fa63681824..aab80edbb8 100644 --- a/gen/_template/type_info.tmpl +++ b/gen/_template/type_info.tmpl @@ -1,4 +1,4 @@ -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} {{ define "type_info" }}{{ $s := . }} // TypeID returns type id in TL schema. // diff --git a/gen/_template/utils.tmpl b/gen/_template/utils.tmpl index ef12f5e92b..378630270f 100644 --- a/gen/_template/utils.tmpl +++ b/gen/_template/utils.tmpl @@ -19,23 +19,23 @@ {{- end }} {{ define "print_type" }} -{{- /*gotype: github.com/gotd/td/gen.fieldDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.fieldDef*/ -}} {{- if $.DoubleSlice }}[][]{{ $.Type }} {{- else if $.Slice }}[]{{ $.Type }} {{- else }}{{ $.Type }} {{- end }}{{- end }} -{{ define "getter_func_type" }}{{- /*gotype: github.com/gotd/td/gen.fieldDef*/ -}} +{{ define "getter_func_type" }}{{- /*gotype: github.com/beeper/td/gen.fieldDef*/ -}} Get{{$.Name}}() (value {{ template "print_type" $ }}{{ if and ($.Conditional) (not $.ConditionalBool) }}, ok bool{{ end }}) {{- end }} {{ define "print_mapper_type" }}{{ $mapping := . -}} -{{- /*gotype: github.com/gotd/td/gen.constructorMapping*/ -}} +{{- /*gotype: github.com/beeper/td/gen.constructorMapping*/ -}} {{- if not ($mapping.Concrete) }}{{ $mapping.Name }}{{- else }}*{{ $mapping.Name }}{{- end -}} {{ end }} {{ define "mapper_func_type" }}{{ $mapping := . -}} -{{- /*gotype: github.com/gotd/td/gen.constructorMapping*/ -}} +{{- /*gotype: github.com/beeper/td/gen.constructorMapping*/ -}} {{- if $mapping.Fields }}As{{ $mapping.MapperName }}() {{ template "print_mapper_type" $mapping }} {{- else }}As{{ $mapping.MapperName }}() ({{ template "print_mapper_type" $mapping }}, bool) {{- end }}{{- end }} @@ -63,7 +63,7 @@ Get{{$.Name}}() (value {{ template "print_type" $ }}{{ if and ($.Conditional) (n {{- end }} {{ define "class_interface_header" }}{{ $f := . }} -{{- /*gotype: github.com/gotd/td/gen.interfaceDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.interfaceDef*/ -}} bin.Encoder bin.Decoder bin.BareEncoder @@ -83,6 +83,6 @@ Get{{$.Name}}() (value {{ template "print_type" $ }}{{ if and ($.Conditional) (n {{- end }} -{{ define "map_collector_name" }}{{ $field := . }}{{- /*gotype: github.com/gotd/td/gen.fieldDef*/ -}} +{{ define "map_collector_name" }}{{ $field := . }}{{- /*gotype: github.com/beeper/td/gen.fieldDef*/ -}} {{ if ne ($field.Name) ("ID") }}{{ $field.Name }}{{ end }} {{- end }} diff --git a/gen/_template/zero.tmpl b/gen/_template/zero.tmpl index ad3321da97..a3204e8ca6 100644 --- a/gen/_template/zero.tmpl +++ b/gen/_template/zero.tmpl @@ -1,10 +1,10 @@ {{ define "zero_derive" }}{{ $s := . }} -{{- /*gotype: github.com/gotd/td/gen.structDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.structDef*/ -}} func ({{ $s.Receiver }} *{{ $s.Name }}) Zero() bool { if {{ $s.Receiver }} == nil { return true } -{{- /*gotype: github.com/gotd/td/gen.fieldDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.fieldDef*/ -}} {{- range $f := $s.Fields }}{{- if ne ($f.Name) ($f.ConditionalField) }} if !({{ $s.Receiver }}.{{template "compare_zero" $f}}) { return false @@ -16,7 +16,7 @@ func ({{ $s.Receiver }} *{{ $s.Name }}) Zero() bool { {{- end -}} {{ define "compare_zero" }} -{{- /*gotype: github.com/gotd/td/gen.fieldDef*/ -}} +{{- /*gotype: github.com/beeper/td/gen.fieldDef*/ -}} {{- .Name -}} {{- if or (.Slice) (.DoubleSlice) -}} == nil {{- else if eq (.Type) ("bin.Int128") -}} == bin.Int128{} diff --git a/gen/example/example_test.go b/gen/example/example_test.go index 5dc520b4ee..a1ee2d8951 100644 --- a/gen/example/example_test.go +++ b/gen/example/example_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tmap" + "github.com/beeper/td/bin" + "github.com/beeper/td/tmap" ) func BenchmarkMessage_Encode(b *testing.B) { diff --git a/gen/example/tl_abstract_message_gen.go b/gen/example/tl_abstract_message_gen.go index 11f82f9e4b..54e7143b71 100644 --- a/gen/example/tl_abstract_message_gen.go +++ b/gen/example/tl_abstract_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_account_themes_gen.go b/gen/example/tl_account_themes_gen.go index a72f3bf7a8..24632c6a6e 100644 --- a/gen/example/tl_account_themes_gen.go +++ b/gen/example/tl_account_themes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_auth_gen.go b/gen/example/tl_auth_gen.go index ddb8657c10..10e7d1e8f0 100644 --- a/gen/example/tl_auth_gen.go +++ b/gen/example/tl_auth_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_bool_gen.go b/gen/example/tl_bool_gen.go index ecbf8bc5de..b306adb36e 100644 --- a/gen/example/tl_bool_gen.go +++ b/gen/example/tl_bool_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_bytes_gen.go b/gen/example/tl_bytes_gen.go index 8fe2d2d8e0..8f2003b68c 100644 --- a/gen/example/tl_bytes_gen.go +++ b/gen/example/tl_bytes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_client_d_h_inner_data_gen.go b/gen/example/tl_client_d_h_inner_data_gen.go index db2ead2898..6fb0358ecd 100644 --- a/gen/example/tl_client_d_h_inner_data_gen.go +++ b/gen/example/tl_client_d_h_inner_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_client_gen.go b/gen/example/tl_client_gen.go index b4a7a31b3f..b6a4aa431b 100644 --- a/gen/example/tl_client_gen.go +++ b/gen/example/tl_client_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_config_gen.go b/gen/example/tl_config_gen.go index 224691893a..5dc5276724 100644 --- a/gen/example/tl_config_gen.go +++ b/gen/example/tl_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_dc_option_gen.go b/gen/example/tl_dc_option_gen.go index 5fd576ba94..e6d78e4c3c 100644 --- a/gen/example/tl_dc_option_gen.go +++ b/gen/example/tl_dc_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_do_auth_gen.go b/gen/example/tl_do_auth_gen.go index 1c00594376..2410c1b76f 100644 --- a/gen/example/tl_do_auth_gen.go +++ b/gen/example/tl_do_auth_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_echo_vector_gen.go b/gen/example/tl_echo_vector_gen.go index 96234fc5ae..04d32cbf48 100644 --- a/gen/example/tl_echo_vector_gen.go +++ b/gen/example/tl_echo_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_error_gen.go b/gen/example/tl_error_gen.go index 3dbce370eb..da1ec8433e 100644 --- a/gen/example/tl_error_gen.go +++ b/gen/example/tl_error_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_get_updates_resp_gen.go b/gen/example/tl_get_updates_resp_gen.go index 570bd2be1f..f2e8d22da5 100644 --- a/gen/example/tl_get_updates_resp_gen.go +++ b/gen/example/tl_get_updates_resp_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_int32_gen.go b/gen/example/tl_int32_gen.go index 6e243206fc..0b2e4ec8e3 100644 --- a/gen/example/tl_int32_gen.go +++ b/gen/example/tl_int32_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_int_vector_gen.go b/gen/example/tl_int_vector_gen.go index 6ddcc044ad..9536a92ac4 100644 --- a/gen/example/tl_int_vector_gen.go +++ b/gen/example/tl_int_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_invoke_with_layer_gen.go b/gen/example/tl_invoke_with_layer_gen.go index 79306a092b..00e1791088 100644 --- a/gen/example/tl_invoke_with_layer_gen.go +++ b/gen/example/tl_invoke_with_layer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_message_gen.go b/gen/example/tl_message_gen.go index 4c772456d6..6d5583ee0f 100644 --- a/gen/example/tl_message_gen.go +++ b/gen/example/tl_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_ok_gen.go b/gen/example/tl_ok_gen.go index 5d1c179088..7d670f40a6 100644 --- a/gen/example/tl_ok_gen.go +++ b/gen/example/tl_ok_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_ping_gen.go b/gen/example/tl_ping_gen.go index 2785506c4a..7575328e40 100644 --- a/gen/example/tl_ping_gen.go +++ b/gen/example/tl_ping_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_registry_gen.go b/gen/example/tl_registry_gen.go index 05b0abeb6b..d3c4634c51 100644 --- a/gen/example/tl_registry_gen.go +++ b/gen/example/tl_registry_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_response_gen.go b/gen/example/tl_response_gen.go index 9d97e0c9a5..1e9b904947 100644 --- a/gen/example/tl_response_gen.go +++ b/gen/example/tl_response_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_send_gen.go b/gen/example/tl_send_gen.go index 995bebe122..6b8986b71a 100644 --- a/gen/example/tl_send_gen.go +++ b/gen/example/tl_send_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_send_multiple_sms_gen.go b/gen/example/tl_send_multiple_sms_gen.go index 5a4bfc3e8e..d9c37a2896 100644 --- a/gen/example/tl_send_multiple_sms_gen.go +++ b/gen/example/tl_send_multiple_sms_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_server_gen.go b/gen/example/tl_server_gen.go index e9188e5f5d..63f774b3aa 100644 --- a/gen/example/tl_server_gen.go +++ b/gen/example/tl_server_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_sms_gen.go b/gen/example/tl_sms_gen.go index 92202f5545..936b92d83a 100644 --- a/gen/example/tl_sms_gen.go +++ b/gen/example/tl_sms_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_string_gen.go b/gen/example/tl_string_gen.go index d0e09b34ec..cfc66d14f9 100644 --- a/gen/example/tl_string_gen.go +++ b/gen/example/tl_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_test_bytes_gen.go b/gen/example/tl_test_bytes_gen.go index 54210e7b82..986301f0f7 100644 --- a/gen/example/tl_test_bytes_gen.go +++ b/gen/example/tl_test_bytes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_test_int_gen.go b/gen/example/tl_test_int_gen.go index c9b4e65e2e..70062fa6e4 100644 --- a/gen/example/tl_test_int_gen.go +++ b/gen/example/tl_test_int_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_test_string_gen.go b/gen/example/tl_test_string_gen.go index 3e1e3cc245..13e6a2da4e 100644 --- a/gen/example/tl_test_string_gen.go +++ b/gen/example/tl_test_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_test_vector_bytes_gen.go b/gen/example/tl_test_vector_bytes_gen.go index 10ba0c8be7..d73a973675 100644 --- a/gen/example/tl_test_vector_bytes_gen.go +++ b/gen/example/tl_test_vector_bytes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_test_vector_int_gen.go b/gen/example/tl_test_vector_int_gen.go index f1c2bbe377..3a221171bc 100644 --- a/gen/example/tl_test_vector_int_gen.go +++ b/gen/example/tl_test_vector_int_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_test_vector_int_object_gen.go b/gen/example/tl_test_vector_int_object_gen.go index 84b996ff75..6d1f45adda 100644 --- a/gen/example/tl_test_vector_int_object_gen.go +++ b/gen/example/tl_test_vector_int_object_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_test_vector_string_gen.go b/gen/example/tl_test_vector_string_gen.go index 496b9aaf48..1768b23bb1 100644 --- a/gen/example/tl_test_vector_string_gen.go +++ b/gen/example/tl_test_vector_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_test_vector_string_object_gen.go b/gen/example/tl_test_vector_string_object_gen.go index 3523703a60..0b4f965b1f 100644 --- a/gen/example/tl_test_vector_string_object_gen.go +++ b/gen/example/tl_test_vector_string_object_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_test_vector_vector_gen.go b/gen/example/tl_test_vector_vector_gen.go index 6cc9e26c50..0b7fd52929 100644 --- a/gen/example/tl_test_vector_vector_gen.go +++ b/gen/example/tl_test_vector_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_text_entities_gen.go b/gen/example/tl_text_entities_gen.go index ad1b013186..be94e67815 100644 --- a/gen/example/tl_text_entities_gen.go +++ b/gen/example/tl_text_entities_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_text_entity_gen.go b/gen/example/tl_text_entity_gen.go index 45fb8acefb..221ca4f808 100644 --- a/gen/example/tl_text_entity_gen.go +++ b/gen/example/tl_text_entity_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_text_entity_type_gen.go b/gen/example/tl_text_entity_type_gen.go index 9ee7844f7e..f17c1759b4 100644 --- a/gen/example/tl_text_entity_type_gen.go +++ b/gen/example/tl_text_entity_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_theme_gen.go b/gen/example/tl_theme_gen.go index 012421240b..f4fe09d3f2 100644 --- a/gen/example/tl_theme_gen.go +++ b/gen/example/tl_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_update_gen.go b/gen/example/tl_update_gen.go index 89e6ddf956..3a50acccf2 100644 --- a/gen/example/tl_update_gen.go +++ b/gen/example/tl_update_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/example/tl_user_auth_gen.go b/gen/example/tl_user_auth_gen.go index 8b38a70048..82e09b22cd 100644 --- a/gen/example/tl_user_auth_gen.go +++ b/gen/example/tl_user_auth_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/gen/generate.go b/gen/generate.go index 22441c463f..c750736d3f 100644 --- a/gen/generate.go +++ b/gen/generate.go @@ -3,4 +3,4 @@ package gen // This file defines how to generate templates and example // generated files. -//go:generate go run github.com/gotd/td/cmd/gotdgen --doc "https://localhost:80/doc" --clean --package td --target example --schema _testdata/example.tl --server +//go:generate go run github.com/beeper/td/cmd/gotdgen --doc "https://localhost:80/doc" --clean --package td --target example --schema _testdata/example.tl --server diff --git a/go.mod b/go.mod index d5bd6fedbd..2e95bc9a85 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/gotd/td +module github.com/beeper/td go 1.22.0 diff --git a/mt/tl_bad_msg_notification_gen.go b/mt/tl_bad_msg_notification_gen.go index b6a6f1e1c5..1e278cb5df 100644 --- a/mt/tl_bad_msg_notification_gen.go +++ b/mt/tl_bad_msg_notification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_client_d_h_inner_data_gen.go b/mt/tl_client_d_h_inner_data_gen.go index 1b53a4aa0d..8b321ef6b1 100644 --- a/mt/tl_client_d_h_inner_data_gen.go +++ b/mt/tl_client_d_h_inner_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_destroy_session_gen.go b/mt/tl_destroy_session_gen.go index 288decdfe9..6e2876cd35 100644 --- a/mt/tl_destroy_session_gen.go +++ b/mt/tl_destroy_session_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_destroy_session_res_gen.go b/mt/tl_destroy_session_res_gen.go index 6a3640b540..df3989c677 100644 --- a/mt/tl_destroy_session_res_gen.go +++ b/mt/tl_destroy_session_res_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_future_salt_gen.go b/mt/tl_future_salt_gen.go index eaf949600c..54bf7aaa02 100644 --- a/mt/tl_future_salt_gen.go +++ b/mt/tl_future_salt_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_future_salts_gen.go b/mt/tl_future_salts_gen.go index 5dfca02126..6e8ff2d8f0 100644 --- a/mt/tl_future_salts_gen.go +++ b/mt/tl_future_salts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_get_future_salts_gen.go b/mt/tl_get_future_salts_gen.go index 0757912d13..ba152f2865 100644 --- a/mt/tl_get_future_salts_gen.go +++ b/mt/tl_get_future_salts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_gzip_packed_gen.go b/mt/tl_gzip_packed_gen.go index 79c6443691..9ba55baca6 100644 --- a/mt/tl_gzip_packed_gen.go +++ b/mt/tl_gzip_packed_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_http_wait_gen.go b/mt/tl_http_wait_gen.go index f05a3597ae..8869392378 100644 --- a/mt/tl_http_wait_gen.go +++ b/mt/tl_http_wait_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_message_gen.go b/mt/tl_message_gen.go index aba322af98..3aebdc3b8a 100644 --- a/mt/tl_message_gen.go +++ b/mt/tl_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_msg_container_gen.go b/mt/tl_msg_container_gen.go index 095b3af430..0d416f3a07 100644 --- a/mt/tl_msg_container_gen.go +++ b/mt/tl_msg_container_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_msg_copy_gen.go b/mt/tl_msg_copy_gen.go index 934025deda..dd723cbc85 100644 --- a/mt/tl_msg_copy_gen.go +++ b/mt/tl_msg_copy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_msg_detailed_info_gen.go b/mt/tl_msg_detailed_info_gen.go index d8f236a930..1d3a3ef599 100644 --- a/mt/tl_msg_detailed_info_gen.go +++ b/mt/tl_msg_detailed_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_msg_resend_req_gen.go b/mt/tl_msg_resend_req_gen.go index e3abb23322..21f00535ac 100644 --- a/mt/tl_msg_resend_req_gen.go +++ b/mt/tl_msg_resend_req_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_msgs_ack_gen.go b/mt/tl_msgs_ack_gen.go index ec24303713..0938d947d5 100644 --- a/mt/tl_msgs_ack_gen.go +++ b/mt/tl_msgs_ack_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_msgs_all_info_gen.go b/mt/tl_msgs_all_info_gen.go index 5d4963b632..5a1a43b0d0 100644 --- a/mt/tl_msgs_all_info_gen.go +++ b/mt/tl_msgs_all_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_msgs_state_info_gen.go b/mt/tl_msgs_state_info_gen.go index 33ae9fe5ce..cae9da6a8a 100644 --- a/mt/tl_msgs_state_info_gen.go +++ b/mt/tl_msgs_state_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_msgs_state_req_gen.go b/mt/tl_msgs_state_req_gen.go index 97b956f2d1..8018a8eb9e 100644 --- a/mt/tl_msgs_state_req_gen.go +++ b/mt/tl_msgs_state_req_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_new_session_created_gen.go b/mt/tl_new_session_created_gen.go index 39e5a7792c..6b431d098a 100644 --- a/mt/tl_new_session_created_gen.go +++ b/mt/tl_new_session_created_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_p_q_inner_data_gen.go b/mt/tl_p_q_inner_data_gen.go index 1687cbab21..47dc0363db 100644 --- a/mt/tl_p_q_inner_data_gen.go +++ b/mt/tl_p_q_inner_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_ping_delay_disconnect_gen.go b/mt/tl_ping_delay_disconnect_gen.go index 0b4cba7546..8273af240b 100644 --- a/mt/tl_ping_delay_disconnect_gen.go +++ b/mt/tl_ping_delay_disconnect_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_ping_gen.go b/mt/tl_ping_gen.go index 858be176e0..e94c704a4d 100644 --- a/mt/tl_ping_gen.go +++ b/mt/tl_ping_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_pong_gen.go b/mt/tl_pong_gen.go index 1db4493fb5..ce02698723 100644 --- a/mt/tl_pong_gen.go +++ b/mt/tl_pong_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_registry_gen.go b/mt/tl_registry_gen.go index 4727c32fd2..57b8b6765f 100644 --- a/mt/tl_registry_gen.go +++ b/mt/tl_registry_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_req_d_h_params_gen.go b/mt/tl_req_d_h_params_gen.go index 6729a6ceb0..6decbe058c 100644 --- a/mt/tl_req_d_h_params_gen.go +++ b/mt/tl_req_d_h_params_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_req_pq_gen.go b/mt/tl_req_pq_gen.go index 814a7ad85d..d1b5b18262 100644 --- a/mt/tl_req_pq_gen.go +++ b/mt/tl_req_pq_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_req_pq_multi_gen.go b/mt/tl_req_pq_multi_gen.go index f4fa2165aa..7e134a5fd3 100644 --- a/mt/tl_req_pq_multi_gen.go +++ b/mt/tl_req_pq_multi_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_res_p_q_gen.go b/mt/tl_res_p_q_gen.go index 64088ff26c..d3e6d6cba3 100644 --- a/mt/tl_res_p_q_gen.go +++ b/mt/tl_res_p_q_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_rpc_drop_answer_const_gen.go b/mt/tl_rpc_drop_answer_const_gen.go index 410ef49949..70ce3bb4b1 100644 --- a/mt/tl_rpc_drop_answer_const_gen.go +++ b/mt/tl_rpc_drop_answer_const_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_rpc_drop_answer_gen.go b/mt/tl_rpc_drop_answer_gen.go index 7149cc51c4..48aa452e44 100644 --- a/mt/tl_rpc_drop_answer_gen.go +++ b/mt/tl_rpc_drop_answer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_rpc_error_gen.go b/mt/tl_rpc_error_gen.go index 322c6d7fd7..62faa2159a 100644 --- a/mt/tl_rpc_error_gen.go +++ b/mt/tl_rpc_error_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_rpc_result_gen.go b/mt/tl_rpc_result_gen.go index 399433b68e..fe74ff4291 100644 --- a/mt/tl_rpc_result_gen.go +++ b/mt/tl_rpc_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_server_d_h_inner_data_gen.go b/mt/tl_server_d_h_inner_data_gen.go index 5e00166292..15d64a3c05 100644 --- a/mt/tl_server_d_h_inner_data_gen.go +++ b/mt/tl_server_d_h_inner_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_server_d_h_params_gen.go b/mt/tl_server_d_h_params_gen.go index d8823b4b91..317affdd46 100644 --- a/mt/tl_server_d_h_params_gen.go +++ b/mt/tl_server_d_h_params_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_set_client_d_h_params_answer_gen.go b/mt/tl_set_client_d_h_params_answer_gen.go index b054709879..e60fda3439 100644 --- a/mt/tl_set_client_d_h_params_answer_gen.go +++ b/mt/tl_set_client_d_h_params_answer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mt/tl_set_client_d_h_params_gen.go b/mt/tl_set_client_d_h_params_gen.go index 7518c3f116..40c8b88f5e 100644 --- a/mt/tl_set_client_d_h_params_gen.go +++ b/mt/tl_set_client_d_h_params_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/mtproto/ack.go b/mtproto/ack.go index e8fa7e4b3c..7d5799ab26 100644 --- a/mtproto/ack.go +++ b/mtproto/ack.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/mt" + "github.com/beeper/td/mt" ) func (c *Conn) ackLoop(ctx context.Context) error { diff --git a/mtproto/conn.go b/mtproto/conn.go index 7b17079dfd..87f430a148 100644 --- a/mtproto/conn.go +++ b/mtproto/conn.go @@ -10,16 +10,16 @@ import ( "go.uber.org/atomic" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/clock" - "github.com/gotd/td/crypto" - "github.com/gotd/td/exchange" - "github.com/gotd/td/mtproto/salts" - "github.com/gotd/td/proto" - "github.com/gotd/td/rpc" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/tmap" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/clock" + "github.com/beeper/td/crypto" + "github.com/beeper/td/exchange" + "github.com/beeper/td/mtproto/salts" + "github.com/beeper/td/proto" + "github.com/beeper/td/rpc" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/tmap" + "github.com/beeper/td/transport" ) // Handler will be called on received message from Telegram. diff --git a/mtproto/conn_test.go b/mtproto/conn_test.go index 6f51c2da11..2a17fe8ae4 100644 --- a/mtproto/conn_test.go +++ b/mtproto/conn_test.go @@ -14,13 +14,13 @@ import ( "github.com/stretchr/testify/assert" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" - "github.com/gotd/td/rpc" - "github.com/gotd/td/tg" - "github.com/gotd/td/tmap" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" + "github.com/beeper/td/rpc" + "github.com/beeper/td/tg" + "github.com/beeper/td/tmap" ) type testHandler func(msgID int64, seqNo int32, body bin.Encoder) (bin.Encoder, error) diff --git a/mtproto/connect.go b/mtproto/connect.go index 969c32fdff..dcd3689a8f 100644 --- a/mtproto/connect.go +++ b/mtproto/connect.go @@ -7,7 +7,7 @@ import ( "go.uber.org/multierr" "go.uber.org/zap" - "github.com/gotd/td/exchange" + "github.com/beeper/td/exchange" ) // connect establishes connection using configured transport, creating diff --git a/mtproto/connect_test.go b/mtproto/connect_test.go index 512f03769e..501de7795a 100644 --- a/mtproto/connect_test.go +++ b/mtproto/connect_test.go @@ -10,10 +10,10 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/clock" - "github.com/gotd/td/crypto" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/clock" + "github.com/beeper/td/crypto" + "github.com/beeper/td/transport" ) type closeConn struct { diff --git a/mtproto/encrypt_test.go b/mtproto/encrypt_test.go index 914bc7fd46..2ff6d9eee6 100644 --- a/mtproto/encrypt_test.go +++ b/mtproto/encrypt_test.go @@ -9,9 +9,9 @@ import ( "github.com/gotd/neo" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/testutil" ) func benchEncryption(b *testing.B, c *Conn, n int) { diff --git a/mtproto/handle_ack.go b/mtproto/handle_ack.go index faed3c1763..3dbc92d1f3 100644 --- a/mtproto/handle_ack.go +++ b/mtproto/handle_ack.go @@ -4,8 +4,8 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" ) func (c *Conn) handleAck(b *bin.Buffer) error { diff --git a/mtproto/handle_bad_msg.go b/mtproto/handle_bad_msg.go index 17dfec543f..378125fed2 100644 --- a/mtproto/handle_bad_msg.go +++ b/mtproto/handle_bad_msg.go @@ -5,8 +5,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" ) type badMessageError struct { diff --git a/mtproto/handle_container.go b/mtproto/handle_container.go index 8626688466..0b3552a65d 100644 --- a/mtproto/handle_container.go +++ b/mtproto/handle_container.go @@ -3,9 +3,9 @@ package mtproto import ( "github.com/go-faster/errors" - "github.com/gotd/td/proto" + "github.com/beeper/td/proto" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func (c *Conn) handleContainer(msgID int64, b *bin.Buffer) error { diff --git a/mtproto/handle_future_salts.go b/mtproto/handle_future_salts.go index eb510005b0..23be3db2e2 100644 --- a/mtproto/handle_future_salts.go +++ b/mtproto/handle_future_salts.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" ) func (c *Conn) handleFutureSalts(b *bin.Buffer) error { diff --git a/mtproto/handle_future_salts_test.go b/mtproto/handle_future_salts_test.go index a598d95c82..35aa32e0a7 100644 --- a/mtproto/handle_future_salts_test.go +++ b/mtproto/handle_future_salts_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" ) func TestConn_handleFutureSalts(t *testing.T) { diff --git a/mtproto/handle_gzip.go b/mtproto/handle_gzip.go index e97830e0f0..18bc9cadcd 100644 --- a/mtproto/handle_gzip.go +++ b/mtproto/handle_gzip.go @@ -3,8 +3,8 @@ package mtproto import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/proto" + "github.com/beeper/td/bin" + "github.com/beeper/td/proto" ) func gzip(b *bin.Buffer) (*bin.Buffer, error) { diff --git a/mtproto/handle_gzip_test.go b/mtproto/handle_gzip_test.go index 1ba3bd1502..a63edf8ac3 100644 --- a/mtproto/handle_gzip_test.go +++ b/mtproto/handle_gzip_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/proto" + "github.com/beeper/td/bin" + "github.com/beeper/td/proto" ) func TestGzipDecode(t *testing.T) { diff --git a/mtproto/handle_message.go b/mtproto/handle_message.go index 11ba59a35b..92006112ad 100644 --- a/mtproto/handle_message.go +++ b/mtproto/handle_message.go @@ -4,9 +4,9 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" ) func (c *Conn) handleMessage(msgID int64, b *bin.Buffer) error { diff --git a/mtproto/handle_message_fuzz.go b/mtproto/handle_message_fuzz.go index 17f00bcd3c..96b08ac166 100644 --- a/mtproto/handle_message_fuzz.go +++ b/mtproto/handle_message_fuzz.go @@ -9,13 +9,13 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" - "github.com/gotd/td/rpc" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" - "github.com/gotd/td/tmap" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" + "github.com/beeper/td/rpc" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" + "github.com/beeper/td/tmap" ) type fuzzHandler struct { diff --git a/mtproto/handle_message_test.go b/mtproto/handle_message_test.go index 7072e8f487..e9933ec0cb 100644 --- a/mtproto/handle_message_test.go +++ b/mtproto/handle_message_test.go @@ -13,13 +13,13 @@ import ( "github.com/gotd/neo" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/rpc" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" - "github.com/gotd/td/tmap" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/rpc" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" + "github.com/beeper/td/tmap" ) type testUpdateHandler struct { diff --git a/mtproto/handle_result.go b/mtproto/handle_result.go index 1a9632f240..b1945b37cd 100644 --- a/mtproto/handle_result.go +++ b/mtproto/handle_result.go @@ -4,10 +4,10 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" + "github.com/beeper/td/tgerr" ) func (c *Conn) handleResult(b *bin.Buffer) error { diff --git a/mtproto/handle_session_created.go b/mtproto/handle_session_created.go index 2e7fdcb0e5..10c633e568 100644 --- a/mtproto/handle_session_created.go +++ b/mtproto/handle_session_created.go @@ -4,9 +4,9 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" ) func (c *Conn) handleSessionCreated(b *bin.Buffer) error { diff --git a/mtproto/handle_session_created_test.go b/mtproto/handle_session_created_test.go index 5b58267300..1c338bd5db 100644 --- a/mtproto/handle_session_created_test.go +++ b/mtproto/handle_session_created_test.go @@ -11,10 +11,10 @@ import ( "github.com/gotd/neo" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" - "github.com/gotd/td/tdsync" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" + "github.com/beeper/td/tdsync" ) func TestConn_handleSessionCreated(t *testing.T) { diff --git a/mtproto/message_id.go b/mtproto/message_id.go index c4a1da46c4..f85ae8febb 100644 --- a/mtproto/message_id.go +++ b/mtproto/message_id.go @@ -1,6 +1,6 @@ package mtproto -import "github.com/gotd/td/proto" +import "github.com/beeper/td/proto" func (c *Conn) newMessageID() int64 { return c.messageID.New(proto.MessageFromClient) diff --git a/mtproto/message_id_test.go b/mtproto/message_id_test.go index 9dcaca35fa..1c4014e20e 100644 --- a/mtproto/message_id_test.go +++ b/mtproto/message_id_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/gotd/td/proto" + "github.com/beeper/td/proto" ) func TestClientNewMessageID(t *testing.T) { diff --git a/mtproto/msg_seq_test.go b/mtproto/msg_seq_test.go index c8d1976243..83bb6ecdab 100644 --- a/mtproto/msg_seq_test.go +++ b/mtproto/msg_seq_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestMsgSeq(t *testing.T) { diff --git a/mtproto/mtproto_test.go b/mtproto/mtproto_test.go index 5a38f54418..acbfecf8ba 100644 --- a/mtproto/mtproto_test.go +++ b/mtproto/mtproto_test.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) type testPayload struct { diff --git a/mtproto/new_encrypted_msg.go b/mtproto/new_encrypted_msg.go index 3ab0e5ce3c..a7a9cdd036 100644 --- a/mtproto/new_encrypted_msg.go +++ b/mtproto/new_encrypted_msg.go @@ -4,9 +4,9 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/proto" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/proto" ) func (c *Conn) newEncryptedMessage(id int64, seq int32, payload bin.Encoder, b *bin.Buffer) error { diff --git a/mtproto/options.go b/mtproto/options.go index 957d710c15..9eef6b3bea 100644 --- a/mtproto/options.go +++ b/mtproto/options.go @@ -7,13 +7,13 @@ import ( "go.opentelemetry.io/otel/trace" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/clock" - "github.com/gotd/td/crypto" - "github.com/gotd/td/exchange" - "github.com/gotd/td/proto" - "github.com/gotd/td/rpc" - "github.com/gotd/td/tmap" + "github.com/beeper/td/bin" + "github.com/beeper/td/clock" + "github.com/beeper/td/crypto" + "github.com/beeper/td/exchange" + "github.com/beeper/td/proto" + "github.com/beeper/td/rpc" + "github.com/beeper/td/tmap" ) // Options of Conn. diff --git a/mtproto/ping.go b/mtproto/ping.go index 11e8afec5d..26d84a3010 100644 --- a/mtproto/ping.go +++ b/mtproto/ping.go @@ -5,9 +5,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mt" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mt" ) // Ping sends ping request to server and waits until pong is received or diff --git a/mtproto/read.go b/mtproto/read.go index d94c732e60..14613eb11c 100644 --- a/mtproto/read.go +++ b/mtproto/read.go @@ -10,10 +10,10 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/proto" - "github.com/gotd/td/proto/codec" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/proto" + "github.com/beeper/td/proto/codec" ) // https://core.telegram.org/mtproto/description#message-identifier-msg-id diff --git a/mtproto/read_test.go b/mtproto/read_test.go index fbcd8ba44b..95049b6885 100644 --- a/mtproto/read_test.go +++ b/mtproto/read_test.go @@ -12,11 +12,11 @@ import ( "github.com/gotd/neo" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/proto" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/proto" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/testutil" ) func TestCheckMessageID(t *testing.T) { diff --git a/mtproto/rpc.go b/mtproto/rpc.go index 79cb38cc0b..7154abc3a7 100644 --- a/mtproto/rpc.go +++ b/mtproto/rpc.go @@ -6,9 +6,9 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/rpc" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/rpc" ) // Invoke sends input and decodes result into output. diff --git a/mtproto/rpc_test.go b/mtproto/rpc_test.go index a515d88786..759260f929 100644 --- a/mtproto/rpc_test.go +++ b/mtproto/rpc_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/assert" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/rpc" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/rpc" + "github.com/beeper/td/testutil" ) func TestConn_dropRPC(t *testing.T) { diff --git a/mtproto/salt.go b/mtproto/salt.go index 22dd8ef896..4e99bd78ea 100644 --- a/mtproto/salt.go +++ b/mtproto/salt.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/mt" + "github.com/beeper/td/mt" ) func (c *Conn) storeSalt(salt int64) { diff --git a/mtproto/salts/salts.go b/mtproto/salts/salts.go index 8600d3f765..ac41e9b305 100644 --- a/mtproto/salts/salts.go +++ b/mtproto/salts/salts.go @@ -6,7 +6,7 @@ import ( "sync" "time" - "github.com/gotd/td/mt" + "github.com/beeper/td/mt" ) // Salts is a simple struct store server salts. diff --git a/mtproto/salts/salts_test.go b/mtproto/salts/salts_test.go index 72ca7e0a4f..b577c5dbae 100644 --- a/mtproto/salts/salts_test.go +++ b/mtproto/salts/salts_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/mt" - "github.com/gotd/td/testutil" + "github.com/beeper/td/mt" + "github.com/beeper/td/testutil" ) func generateSalts(n int) []mt.FutureSalt { diff --git a/mtproto/session.go b/mtproto/session.go index d4db19e5ba..32c297ef6a 100644 --- a/mtproto/session.go +++ b/mtproto/session.go @@ -1,6 +1,6 @@ package mtproto -import "github.com/gotd/td/crypto" +import "github.com/beeper/td/crypto" // Session represents connection state. type Session struct { diff --git a/mtproto/vendored_keys.go b/mtproto/vendored_keys.go index 2185bd293f..168fff13bc 100644 --- a/mtproto/vendored_keys.go +++ b/mtproto/vendored_keys.go @@ -5,8 +5,8 @@ import ( _ "embed" "sync" - "github.com/gotd/td/crypto" - "github.com/gotd/td/exchange" + "github.com/beeper/td/crypto" + "github.com/beeper/td/exchange" ) var ( diff --git a/mtproto/write.go b/mtproto/write.go index faa8d44abf..345af04106 100644 --- a/mtproto/write.go +++ b/mtproto/write.go @@ -3,7 +3,7 @@ package mtproto import ( "context" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func (c *Conn) writeContentMessage(ctx context.Context, msgID int64, seqNo int32, message bin.Encoder) error { diff --git a/mtproto/write_test.go b/mtproto/write_test.go index 8c61200200..f7b4e2b04a 100644 --- a/mtproto/write_test.go +++ b/mtproto/write_test.go @@ -12,8 +12,8 @@ import ( "github.com/gotd/neo" - "github.com/gotd/td/crypto" - "github.com/gotd/td/testutil" + "github.com/beeper/td/crypto" + "github.com/beeper/td/testutil" ) func benchWrite(payloadSize int) func(b *testing.B) { diff --git a/mtproto/zap.go b/mtproto/zap.go index 59b0ea9595..d6e80e969a 100644 --- a/mtproto/zap.go +++ b/mtproto/zap.go @@ -6,7 +6,7 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zapcore" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) type logType struct { diff --git a/mtproto/zap_test.go b/mtproto/zap_test.go index d288b55cfd..4f8fb5fd14 100644 --- a/mtproto/zap_test.go +++ b/mtproto/zap_test.go @@ -5,8 +5,8 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/tmap" + "github.com/beeper/td/bin" + "github.com/beeper/td/tmap" ) func BenchmarkConn_logWithType(b *testing.B) { diff --git a/mtproto/zero_test.go b/mtproto/zero_test.go index 8099ffa626..7acea1b1c6 100644 --- a/mtproto/zero_test.go +++ b/mtproto/zero_test.go @@ -3,6 +3,6 @@ package mtproto -import "github.com/gotd/td/testutil" +import "github.com/beeper/td/testutil" type Zero = testutil.ZeroRand diff --git a/mtproxy/faketls/client_hello.go b/mtproxy/faketls/client_hello.go index fbd10528c2..d0a3884d20 100644 --- a/mtproxy/faketls/client_hello.go +++ b/mtproxy/faketls/client_hello.go @@ -8,8 +8,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/clock" + "github.com/beeper/td/bin" + "github.com/beeper/td/clock" ) const clientHelloLength = 517 diff --git a/mtproxy/faketls/faketls.go b/mtproxy/faketls/faketls.go index 8927bfcab9..0cbe7545f0 100644 --- a/mtproxy/faketls/faketls.go +++ b/mtproxy/faketls/faketls.go @@ -7,8 +7,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/clock" - "github.com/gotd/td/mtproxy" + "github.com/beeper/td/clock" + "github.com/beeper/td/mtproxy" ) // FakeTLS implements FakeTLS obfuscation protocol. diff --git a/mtproxy/obfuscated2/keys.go b/mtproxy/obfuscated2/keys.go index 72afe89d97..814040e78f 100644 --- a/mtproxy/obfuscated2/keys.go +++ b/mtproxy/obfuscated2/keys.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) type keys struct { diff --git a/mtproxy/obfuscated2/obfuscated2.go b/mtproxy/obfuscated2/obfuscated2.go index c073d3187f..fa962fa917 100644 --- a/mtproxy/obfuscated2/obfuscated2.go +++ b/mtproxy/obfuscated2/obfuscated2.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/mtproxy" + "github.com/beeper/td/mtproxy" ) // Obfuscated2 implements obfuscated2 obfuscation protocol. diff --git a/mtproxy/obfuscator/dialer.go b/mtproxy/obfuscator/dialer.go index 94045d9a0d..9eba09bf05 100644 --- a/mtproxy/obfuscator/dialer.go +++ b/mtproxy/obfuscator/dialer.go @@ -4,7 +4,7 @@ import ( "io" "net" - "github.com/gotd/td/mtproxy/obfuscated2" + "github.com/beeper/td/mtproxy/obfuscated2" ) // Conn is net.Conn wrapper to use Obfuscator. diff --git a/mtproxy/obfuscator/obfuscator.go b/mtproxy/obfuscator/obfuscator.go index 15d142cdff..7600236ed7 100644 --- a/mtproxy/obfuscator/obfuscator.go +++ b/mtproxy/obfuscator/obfuscator.go @@ -6,9 +6,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/mtproxy" - "github.com/gotd/td/mtproxy/faketls" - "github.com/gotd/td/mtproxy/obfuscated2" + "github.com/beeper/td/mtproxy" + "github.com/beeper/td/mtproxy/faketls" + "github.com/beeper/td/mtproxy/obfuscated2" ) // Obfuscator represents MTProxy obfuscator. diff --git a/mtproxy/secret.go b/mtproxy/secret.go index 4c07768e41..f168db37f2 100644 --- a/mtproxy/secret.go +++ b/mtproxy/secret.go @@ -3,7 +3,7 @@ package mtproxy import ( "github.com/go-faster/errors" - "github.com/gotd/td/proto/codec" + "github.com/beeper/td/proto/codec" ) // SecretType represents MTProxy secret type. diff --git a/oteltg/otelch.go b/oteltg/otelch.go index 8aa1b30062..c180c6ea08 100644 --- a/oteltg/otelch.go +++ b/oteltg/otelch.go @@ -2,4 +2,4 @@ package oteltg // Name of instrumentation. -const Name = "github.com/gotd/td" +const Name = "github.com/beeper/td" diff --git a/pool/pool.go b/pool/pool.go index 081d0296b8..4c5e1e1f47 100644 --- a/pool/pool.go +++ b/pool/pool.go @@ -9,8 +9,8 @@ import ( "go.uber.org/atomic" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdsync" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdsync" ) // DC represents connection pool to one data center. diff --git a/pool/pool_conn.go b/pool/pool_conn.go index c604451e1b..bb7c2bb48f 100644 --- a/pool/pool_conn.go +++ b/pool/pool_conn.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" "go.uber.org/atomic" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdsync" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdsync" ) // ErrConnDead means that connection is closed and can't be used anymore. diff --git a/pool/pool_test.go b/pool/pool_test.go index 24fb4532ee..595dc29bfc 100644 --- a/pool/pool_test.go +++ b/pool/pool_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdsync" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdsync" ) type mockConn struct { diff --git a/pool/req_map_test.go b/pool/req_map_test.go index 47d76a3cce..9d358f567d 100644 --- a/pool/req_map_test.go +++ b/pool/req_map_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tdsync" + "github.com/beeper/td/tdsync" ) func TestReqMap(t *testing.T) { diff --git a/pool/session.go b/pool/session.go index a2f761b222..e5e23c5d7d 100644 --- a/pool/session.go +++ b/pool/session.go @@ -3,8 +3,8 @@ package pool import ( "sync" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mtproto" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mtproto" ) // Session represents DC session. diff --git a/proto/codec/abridged.go b/proto/codec/abridged.go index 989eada453..4b2098ac4b 100644 --- a/proto/codec/abridged.go +++ b/proto/codec/abridged.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // AbridgedClientStart is starting bytes sent by client in Abridged mode. diff --git a/proto/codec/abridged_test.go b/proto/codec/abridged_test.go index 1ba0b89a91..5376dbd1dd 100644 --- a/proto/codec/abridged_test.go +++ b/proto/codec/abridged_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" "github.com/stretchr/testify/require" ) diff --git a/proto/codec/benchmark_test.go b/proto/codec/benchmark_test.go index ccabb6314e..8ada2e6788 100644 --- a/proto/codec/benchmark_test.go +++ b/proto/codec/benchmark_test.go @@ -6,8 +6,8 @@ import ( "io" "testing" - "github.com/gotd/td/bin" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/testutil" ) func benchWrite(codec Codec) func(payloadSize int) func(b *testing.B) { diff --git a/proto/codec/codec.go b/proto/codec/codec.go index 52cff3fbe7..21176a6b93 100644 --- a/proto/codec/codec.go +++ b/proto/codec/codec.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Codec is MTProto transport protocol encoding abstraction. diff --git a/proto/codec/codec_test.go b/proto/codec/codec_test.go index ea504a2987..85cb480274 100644 --- a/proto/codec/codec_test.go +++ b/proto/codec/codec_test.go @@ -10,8 +10,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/testutil" ) type codecTest struct { diff --git a/proto/codec/errors.go b/proto/codec/errors.go index 4dd9ca2f54..e19ae4cae8 100644 --- a/proto/codec/errors.go +++ b/proto/codec/errors.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) const ( diff --git a/proto/codec/full.go b/proto/codec/full.go index 8504082994..44037a3b34 100644 --- a/proto/codec/full.go +++ b/proto/codec/full.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Full is full MTProto transport. diff --git a/proto/codec/full_test.go b/proto/codec/full_test.go index f171a4d6ee..ce623b52da 100644 --- a/proto/codec/full_test.go +++ b/proto/codec/full_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func fullTestData() (packet, payload []byte) { diff --git a/proto/codec/intermediate.go b/proto/codec/intermediate.go index 7a0924fcba..a20c38be49 100644 --- a/proto/codec/intermediate.go +++ b/proto/codec/intermediate.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // IntermediateClientStart is starting bytes sent by client in Intermediate mode. diff --git a/proto/codec/intermediate_test.go b/proto/codec/intermediate_test.go index f5cb199313..d7c9969b76 100644 --- a/proto/codec/intermediate_test.go +++ b/proto/codec/intermediate_test.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func TestIntermediate(t *testing.T) { diff --git a/proto/codec/padded_intermediate.go b/proto/codec/padded_intermediate.go index 13960dc311..b873e0982a 100644 --- a/proto/codec/padded_intermediate.go +++ b/proto/codec/padded_intermediate.go @@ -5,8 +5,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" ) // PaddedIntermediateClientStart is starting bytes sent by client in Padded intermediate mode. diff --git a/proto/container.go b/proto/container.go index a2f36ae2a9..5040c3d816 100644 --- a/proto/container.go +++ b/proto/container.go @@ -3,7 +3,7 @@ package proto import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // MessageContainerTypeID is TL type id of MessageContainer. diff --git a/proto/gzip.go b/proto/gzip.go index 0c23ab83c8..0572941125 100644 --- a/proto/gzip.go +++ b/proto/gzip.go @@ -11,7 +11,7 @@ import ( "github.com/klauspost/compress/gzip" "go.uber.org/multierr" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) type gzipPool struct { diff --git a/proto/gzip_test.go b/proto/gzip_test.go index 66dd56c087..3c1ec2855b 100644 --- a/proto/gzip_test.go +++ b/proto/gzip_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/testutil" ) func TestGZIP_Encode(t *testing.T) { diff --git a/proto/message_id_test.go b/proto/message_id_test.go index 9708cbf624..36ed958243 100644 --- a/proto/message_id_test.go +++ b/proto/message_id_test.go @@ -9,7 +9,7 @@ import ( "github.com/gotd/neo" - "github.com/gotd/td/testutil" + "github.com/beeper/td/testutil" ) func TestMessageID(t *testing.T) { diff --git a/proto/rpc_result.go b/proto/rpc_result.go index 992dae006a..3012bd2138 100644 --- a/proto/rpc_result.go +++ b/proto/rpc_result.go @@ -1,7 +1,7 @@ package proto import ( - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // ResultTypeID is TL type id of Result. diff --git a/proto/unencrypted_message.go b/proto/unencrypted_message.go index 3ddce19a84..ee8e57d60a 100644 --- a/proto/unencrypted_message.go +++ b/proto/unencrypted_message.go @@ -3,7 +3,7 @@ package proto import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // UnencryptedMessage is plaintext message. diff --git a/proto/unencrypted_message_test.go b/proto/unencrypted_message_test.go index 9687b9c6da..f073d6732a 100644 --- a/proto/unencrypted_message_test.go +++ b/proto/unencrypted_message_test.go @@ -3,7 +3,7 @@ package proto import ( "testing" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" "github.com/stretchr/testify/require" ) diff --git a/rpc/engine.go b/rpc/engine.go index fe4a39726b..f633bade16 100644 --- a/rpc/engine.go +++ b/rpc/engine.go @@ -9,8 +9,8 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/clock" + "github.com/beeper/td/bin" + "github.com/beeper/td/clock" ) // Engine handles RPC requests. diff --git a/rpc/engine_bench_test.go b/rpc/engine_bench_test.go index 945d970b4c..1b581ca5a4 100644 --- a/rpc/engine_bench_test.go +++ b/rpc/engine_bench_test.go @@ -8,7 +8,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // mockObject implements bin.Object for testing. diff --git a/rpc/engine_test.go b/rpc/engine_test.go index f58dcb9c55..f87ed3b56b 100644 --- a/rpc/engine_test.go +++ b/rpc/engine_test.go @@ -13,9 +13,9 @@ import ( "github.com/gotd/neo" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/testutil" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/testutil" ) type request struct { diff --git a/rpc/external.go b/rpc/external.go index 6adc97a97a..c640999eae 100644 --- a/rpc/external.go +++ b/rpc/external.go @@ -3,7 +3,7 @@ package rpc import ( "context" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Send is a function that sends requests to the server. diff --git a/rpc/options.go b/rpc/options.go index 8fccd2956d..753baefae2 100644 --- a/rpc/options.go +++ b/rpc/options.go @@ -5,7 +5,7 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/clock" + "github.com/beeper/td/clock" ) // Options of rpc engine. diff --git a/session/session.go b/session/session.go index 21472cdcb9..bf145ba500 100644 --- a/session/session.go +++ b/session/session.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Config is subset of tg.Config. diff --git a/session/tdesktop.go b/session/tdesktop.go index cf2431afbf..f355bcfda9 100644 --- a/session/tdesktop.go +++ b/session/tdesktop.go @@ -3,9 +3,9 @@ package session import ( "github.com/go-faster/errors" - "github.com/gotd/td/session/tdesktop" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/tg" + "github.com/beeper/td/session/tdesktop" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/tg" ) func findDCAddr(list []tg.DCOption, dcID int) string { diff --git a/session/tdesktop/dbi.go b/session/tdesktop/dbi.go index 18d7b099d0..220b55836b 100644 --- a/session/tdesktop/dbi.go +++ b/session/tdesktop/dbi.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) //nolint:deadcode,unused,varcheck diff --git a/session/tdesktop/key_data.go b/session/tdesktop/key_data.go index 9ec0a2978b..bac447584c 100644 --- a/session/tdesktop/key_data.go +++ b/session/tdesktop/key_data.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) type keyData struct { diff --git a/session/tdesktop/local_key.go b/session/tdesktop/local_key.go index 83df57a2ee..8047846b5c 100644 --- a/session/tdesktop/local_key.go +++ b/session/tdesktop/local_key.go @@ -11,8 +11,8 @@ import ( "github.com/gotd/ige" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" ) // See https://github.com/telegramdesktop/tdesktop/blob/v2.9.8/Telegram/SourceFiles/storage/details/storage_file_utilities.cpp#L322. diff --git a/session/tdesktop/local_key_test.go b/session/tdesktop/local_key_test.go index 188196b149..a1419a2419 100644 --- a/session/tdesktop/local_key_test.go +++ b/session/tdesktop/local_key_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) func Test_createLegacyLocalKey(t *testing.T) { diff --git a/session/tdesktop/mtp_authorization.go b/session/tdesktop/mtp_authorization.go index a3a87f819f..a1074a5271 100644 --- a/session/tdesktop/mtp_authorization.go +++ b/session/tdesktop/mtp_authorization.go @@ -3,8 +3,8 @@ package tdesktop import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" ) // MTPAuthorization is a Telegram Desktop storage structure which stores MTProto session info. diff --git a/session/tdesktop/mtp_authorization_test.go b/session/tdesktop/mtp_authorization_test.go index f71d00a8dd..75d4970e39 100644 --- a/session/tdesktop/mtp_authorization_test.go +++ b/session/tdesktop/mtp_authorization_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func Test_mtpAuthorization_deserialize(t *testing.T) { diff --git a/session/tdesktop/mtp_config.go b/session/tdesktop/mtp_config.go index 35735ac50d..b62a9da87a 100644 --- a/session/tdesktop/mtp_config.go +++ b/session/tdesktop/mtp_config.go @@ -3,8 +3,8 @@ package tdesktop import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" ) // MTPConfigEnvironment is enum of config environment. diff --git a/session/tdesktop/mtp_dcoptions.go b/session/tdesktop/mtp_dcoptions.go index 53f008756c..64bc29031b 100644 --- a/session/tdesktop/mtp_dcoptions.go +++ b/session/tdesktop/mtp_dcoptions.go @@ -3,7 +3,7 @@ package tdesktop import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // MTPDCOption is a Telegram Desktop storage structure which stores DC info. diff --git a/session/tdesktop/mtp_dcoptions_test.go b/session/tdesktop/mtp_dcoptions_test.go index 062c993023..5bdc07fd5a 100644 --- a/session/tdesktop/mtp_dcoptions_test.go +++ b/session/tdesktop/mtp_dcoptions_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) var ( diff --git a/session/tdesktop/tdesktop_example_test.go b/session/tdesktop/tdesktop_example_test.go index 457e054c15..774d94807d 100644 --- a/session/tdesktop/tdesktop_example_test.go +++ b/session/tdesktop/tdesktop_example_test.go @@ -5,7 +5,7 @@ import ( "os" "path/filepath" - "github.com/gotd/td/session/tdesktop" + "github.com/beeper/td/session/tdesktop" ) func ExampleRead() { diff --git a/session/tdesktop_example_test.go b/session/tdesktop_example_test.go index 41dec156ff..0c3927b902 100644 --- a/session/tdesktop_example_test.go +++ b/session/tdesktop_example_test.go @@ -6,9 +6,9 @@ import ( "os" "path/filepath" - "github.com/gotd/td/session" - "github.com/gotd/td/session/tdesktop" - "github.com/gotd/td/telegram" + "github.com/beeper/td/session" + "github.com/beeper/td/session/tdesktop" + "github.com/beeper/td/telegram" ) func ExampleTDesktopSession() { diff --git a/session/tdesktop_test.go b/session/tdesktop_test.go index 113f366d3a..ff7647cba0 100644 --- a/session/tdesktop_test.go +++ b/session/tdesktop_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/crypto" - "github.com/gotd/td/session/tdesktop" - "github.com/gotd/td/telegram/dcs" + "github.com/beeper/td/crypto" + "github.com/beeper/td/session/tdesktop" + "github.com/beeper/td/telegram/dcs" ) func TestTDesktopSession(t *testing.T) { diff --git a/session/telethon.go b/session/telethon.go index d6ef9b4e5b..47e048bf3d 100644 --- a/session/telethon.go +++ b/session/telethon.go @@ -8,7 +8,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) // https://github.com/LonamiWebs/Telethon/blob/master/telethon/sessions/string.py#L11 diff --git a/session/telethon_example_test.go b/session/telethon_example_test.go index 386b66b8e4..783267d1fc 100644 --- a/session/telethon_example_test.go +++ b/session/telethon_example_test.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/gotd/td/session" - "github.com/gotd/td/telegram" + "github.com/beeper/td/session" + "github.com/beeper/td/telegram" ) func ExampleTelethonSession() { diff --git a/session/telethon_test.go b/session/telethon_test.go index beb81798e4..d7f1863eb0 100644 --- a/session/telethon_test.go +++ b/session/telethon_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) func repeat(i int) []byte { diff --git a/td.go b/td.go index 9a87fa12a2..c44a967f86 100644 --- a/td.go +++ b/td.go @@ -1,11 +1,11 @@ // Package td implements MTProto encoding and decoding. package td -//go:generate go run github.com/gotd/td/cmd/gotdgen --doc "https://core.telegram.org/" --clean --server --handlers --mapping --slices --package tg --target tg --schema _schema/telegram.tl -//go:generate go run github.com/gotd/td/cmd/gotdgen --doc "https://core.telegram.org/" --clean --package e2e --target tg/e2e --schema _schema/encrypted.tl +//go:generate go run github.com/beeper/td/cmd/gotdgen --doc "https://core.telegram.org/" --clean --server --handlers --mapping --slices --package tg --target tg --schema _schema/telegram.tl +//go:generate go run github.com/beeper/td/cmd/gotdgen --doc "https://core.telegram.org/" --clean --package e2e --target tg/e2e --schema _schema/encrypted.tl -//go:generate go run github.com/gotd/td/cmd/gotdgen --clean --package tdapi --tdlib-json --target tdapi --schema _schema/tdapi.tl +//go:generate go run github.com/beeper/td/cmd/gotdgen --clean --package tdapi --tdlib-json --target tdapi --schema _schema/tdapi.tl -//go:generate go run github.com/gotd/td/cmd/gotdgen --clean --client=false --package tgtrace --target tgtrace --schema _schema/trace.tl +//go:generate go run github.com/beeper/td/cmd/gotdgen --clean --client=false --package tgtrace --target tgtrace --schema _schema/trace.tl -//go:generate go run github.com/gotd/td/cmd/gotdgen --clean --package mt --target mt --client=false --schema _schema/mt.tl +//go:generate go run github.com/beeper/td/cmd/gotdgen --clean --package mt --target mt --client=false --schema _schema/mt.tl diff --git a/tdapi/tl_accent_color_gen.go b/tdapi/tl_accent_color_gen.go index cb6cddff3f..affb8aa95a 100644 --- a/tdapi/tl_accent_color_gen.go +++ b/tdapi/tl_accent_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_accept_call_gen.go b/tdapi/tl_accept_call_gen.go index e08d887d47..05636f8458 100644 --- a/tdapi/tl_accept_call_gen.go +++ b/tdapi/tl_accept_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_accept_terms_of_service_gen.go b/tdapi/tl_accept_terms_of_service_gen.go index 9e26638eee..7bc7f695e1 100644 --- a/tdapi/tl_accept_terms_of_service_gen.go +++ b/tdapi/tl_accept_terms_of_service_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_account_ttl_gen.go b/tdapi/tl_account_ttl_gen.go index a0a36dbcc5..129e3d9ac0 100644 --- a/tdapi/tl_account_ttl_gen.go +++ b/tdapi/tl_account_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_activate_story_stealth_mode_gen.go b/tdapi/tl_activate_story_stealth_mode_gen.go index 63e9f087c7..6a5da79e1f 100644 --- a/tdapi/tl_activate_story_stealth_mode_gen.go +++ b/tdapi/tl_activate_story_stealth_mode_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_bot_media_preview_gen.go b/tdapi/tl_add_bot_media_preview_gen.go index 9a8383434b..65b13e4b24 100644 --- a/tdapi/tl_add_bot_media_preview_gen.go +++ b/tdapi/tl_add_bot_media_preview_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_chat_folder_by_invite_link_gen.go b/tdapi/tl_add_chat_folder_by_invite_link_gen.go index ad6b2742d2..8207bad3c5 100644 --- a/tdapi/tl_add_chat_folder_by_invite_link_gen.go +++ b/tdapi/tl_add_chat_folder_by_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_chat_member_gen.go b/tdapi/tl_add_chat_member_gen.go index 43c9ec6408..cfc9d719ad 100644 --- a/tdapi/tl_add_chat_member_gen.go +++ b/tdapi/tl_add_chat_member_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_chat_members_gen.go b/tdapi/tl_add_chat_members_gen.go index e9de4e4b49..e3f3f5bd97 100644 --- a/tdapi/tl_add_chat_members_gen.go +++ b/tdapi/tl_add_chat_members_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_chat_to_list_gen.go b/tdapi/tl_add_chat_to_list_gen.go index ba01cc8ec3..74b30e6049 100644 --- a/tdapi/tl_add_chat_to_list_gen.go +++ b/tdapi/tl_add_chat_to_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_contact_gen.go b/tdapi/tl_add_contact_gen.go index 7139e27cba..010e07ff5f 100644 --- a/tdapi/tl_add_contact_gen.go +++ b/tdapi/tl_add_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_custom_server_language_pack_gen.go b/tdapi/tl_add_custom_server_language_pack_gen.go index f766ebdb9d..b961c1650d 100644 --- a/tdapi/tl_add_custom_server_language_pack_gen.go +++ b/tdapi/tl_add_custom_server_language_pack_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_favorite_sticker_gen.go b/tdapi/tl_add_favorite_sticker_gen.go index eaadb05b5d..cae85ff859 100644 --- a/tdapi/tl_add_favorite_sticker_gen.go +++ b/tdapi/tl_add_favorite_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_file_to_downloads_gen.go b/tdapi/tl_add_file_to_downloads_gen.go index 744d903b93..505174bf17 100644 --- a/tdapi/tl_add_file_to_downloads_gen.go +++ b/tdapi/tl_add_file_to_downloads_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_local_message_gen.go b/tdapi/tl_add_local_message_gen.go index 89a6ddb53d..661c64b0ac 100644 --- a/tdapi/tl_add_local_message_gen.go +++ b/tdapi/tl_add_local_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_log_message_gen.go b/tdapi/tl_add_log_message_gen.go index 9dd3545542..b9526b7829 100644 --- a/tdapi/tl_add_log_message_gen.go +++ b/tdapi/tl_add_log_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_message_reaction_gen.go b/tdapi/tl_add_message_reaction_gen.go index 294f853bb8..63ba812b33 100644 --- a/tdapi/tl_add_message_reaction_gen.go +++ b/tdapi/tl_add_message_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_network_statistics_gen.go b/tdapi/tl_add_network_statistics_gen.go index 6222dfe961..bdd561ab48 100644 --- a/tdapi/tl_add_network_statistics_gen.go +++ b/tdapi/tl_add_network_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_pending_paid_message_reaction_gen.go b/tdapi/tl_add_pending_paid_message_reaction_gen.go index 901c5f0b63..eabede20e3 100644 --- a/tdapi/tl_add_pending_paid_message_reaction_gen.go +++ b/tdapi/tl_add_pending_paid_message_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_proxy_gen.go b/tdapi/tl_add_proxy_gen.go index 5a048fb605..18c61d03b5 100644 --- a/tdapi/tl_add_proxy_gen.go +++ b/tdapi/tl_add_proxy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_quick_reply_shortcut_inline_query_result_message_gen.go b/tdapi/tl_add_quick_reply_shortcut_inline_query_result_message_gen.go index 0035c60601..aea4f218ef 100644 --- a/tdapi/tl_add_quick_reply_shortcut_inline_query_result_message_gen.go +++ b/tdapi/tl_add_quick_reply_shortcut_inline_query_result_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_quick_reply_shortcut_message_album_gen.go b/tdapi/tl_add_quick_reply_shortcut_message_album_gen.go index d514c5958d..774dee1321 100644 --- a/tdapi/tl_add_quick_reply_shortcut_message_album_gen.go +++ b/tdapi/tl_add_quick_reply_shortcut_message_album_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_quick_reply_shortcut_message_gen.go b/tdapi/tl_add_quick_reply_shortcut_message_gen.go index 53f67edab5..fbcf6e297d 100644 --- a/tdapi/tl_add_quick_reply_shortcut_message_gen.go +++ b/tdapi/tl_add_quick_reply_shortcut_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_recent_sticker_gen.go b/tdapi/tl_add_recent_sticker_gen.go index 6a94753565..4b5d1034ec 100644 --- a/tdapi/tl_add_recent_sticker_gen.go +++ b/tdapi/tl_add_recent_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_recently_found_chat_gen.go b/tdapi/tl_add_recently_found_chat_gen.go index 503e3aa013..5e1839776b 100644 --- a/tdapi/tl_add_recently_found_chat_gen.go +++ b/tdapi/tl_add_recently_found_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_saved_animation_gen.go b/tdapi/tl_add_saved_animation_gen.go index 456d6db420..737dbd3cff 100644 --- a/tdapi/tl_add_saved_animation_gen.go +++ b/tdapi/tl_add_saved_animation_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_saved_notification_sound_gen.go b/tdapi/tl_add_saved_notification_sound_gen.go index 7584082d35..da2fc7994b 100644 --- a/tdapi/tl_add_saved_notification_sound_gen.go +++ b/tdapi/tl_add_saved_notification_sound_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_add_sticker_to_set_gen.go b/tdapi/tl_add_sticker_to_set_gen.go index 9dada8888d..6462fae195 100644 --- a/tdapi/tl_add_sticker_to_set_gen.go +++ b/tdapi/tl_add_sticker_to_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_added_reaction_gen.go b/tdapi/tl_added_reaction_gen.go index 2c5e49a2e8..56f7c5d248 100644 --- a/tdapi/tl_added_reaction_gen.go +++ b/tdapi/tl_added_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_added_reactions_gen.go b/tdapi/tl_added_reactions_gen.go index e0faa8677c..fea9437f8e 100644 --- a/tdapi/tl_added_reactions_gen.go +++ b/tdapi/tl_added_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_address_gen.go b/tdapi/tl_address_gen.go index 02211304a9..f971412d3b 100644 --- a/tdapi/tl_address_gen.go +++ b/tdapi/tl_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_allow_bot_to_send_messages_gen.go b/tdapi/tl_allow_bot_to_send_messages_gen.go index 0b1302a5c2..662b3c2be0 100644 --- a/tdapi/tl_allow_bot_to_send_messages_gen.go +++ b/tdapi/tl_allow_bot_to_send_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_alternative_video_gen.go b/tdapi/tl_alternative_video_gen.go index e79f30def1..1f4e8f6993 100644 --- a/tdapi/tl_alternative_video_gen.go +++ b/tdapi/tl_alternative_video_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_animated_chat_photo_gen.go b/tdapi/tl_animated_chat_photo_gen.go index 69c55611ec..c100ddcd7a 100644 --- a/tdapi/tl_animated_chat_photo_gen.go +++ b/tdapi/tl_animated_chat_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_animated_emoji_gen.go b/tdapi/tl_animated_emoji_gen.go index 37e1093b1e..9093d63472 100644 --- a/tdapi/tl_animated_emoji_gen.go +++ b/tdapi/tl_animated_emoji_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_animation_gen.go b/tdapi/tl_animation_gen.go index 8624cc898d..17fd2fc228 100644 --- a/tdapi/tl_animation_gen.go +++ b/tdapi/tl_animation_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_animations_gen.go b/tdapi/tl_animations_gen.go index 5c51d23ab5..d25fac5856 100644 --- a/tdapi/tl_animations_gen.go +++ b/tdapi/tl_animations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_answer_callback_query_gen.go b/tdapi/tl_answer_callback_query_gen.go index 0267015077..fb39d2229d 100644 --- a/tdapi/tl_answer_callback_query_gen.go +++ b/tdapi/tl_answer_callback_query_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_answer_custom_query_gen.go b/tdapi/tl_answer_custom_query_gen.go index ef4a01b803..fe6045476a 100644 --- a/tdapi/tl_answer_custom_query_gen.go +++ b/tdapi/tl_answer_custom_query_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_answer_inline_query_gen.go b/tdapi/tl_answer_inline_query_gen.go index 8eb0201b55..2e24775574 100644 --- a/tdapi/tl_answer_inline_query_gen.go +++ b/tdapi/tl_answer_inline_query_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_answer_pre_checkout_query_gen.go b/tdapi/tl_answer_pre_checkout_query_gen.go index c84e7d5da6..f55d7bbc88 100644 --- a/tdapi/tl_answer_pre_checkout_query_gen.go +++ b/tdapi/tl_answer_pre_checkout_query_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_answer_shipping_query_gen.go b/tdapi/tl_answer_shipping_query_gen.go index 9526d8d251..6a29a02fd2 100644 --- a/tdapi/tl_answer_shipping_query_gen.go +++ b/tdapi/tl_answer_shipping_query_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_answer_web_app_query_gen.go b/tdapi/tl_answer_web_app_query_gen.go index 55d02a235a..ad9697be31 100644 --- a/tdapi/tl_answer_web_app_query_gen.go +++ b/tdapi/tl_answer_web_app_query_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_apply_premium_gift_code_gen.go b/tdapi/tl_apply_premium_gift_code_gen.go index 7a34b85765..65a40cfb80 100644 --- a/tdapi/tl_apply_premium_gift_code_gen.go +++ b/tdapi/tl_apply_premium_gift_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_archive_chat_list_settings_gen.go b/tdapi/tl_archive_chat_list_settings_gen.go index 658551da7e..b09b79ca4c 100644 --- a/tdapi/tl_archive_chat_list_settings_gen.go +++ b/tdapi/tl_archive_chat_list_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_assign_app_store_transaction_gen.go b/tdapi/tl_assign_app_store_transaction_gen.go index a3a8bdce8d..eae1a07ffd 100644 --- a/tdapi/tl_assign_app_store_transaction_gen.go +++ b/tdapi/tl_assign_app_store_transaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_assign_google_play_transaction_gen.go b/tdapi/tl_assign_google_play_transaction_gen.go index 9aac6c4184..3febebb5b6 100644 --- a/tdapi/tl_assign_google_play_transaction_gen.go +++ b/tdapi/tl_assign_google_play_transaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_attachment_menu_bot_color_gen.go b/tdapi/tl_attachment_menu_bot_color_gen.go index 2ca39abf1b..66a88b7c5d 100644 --- a/tdapi/tl_attachment_menu_bot_color_gen.go +++ b/tdapi/tl_attachment_menu_bot_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_attachment_menu_bot_gen.go b/tdapi/tl_attachment_menu_bot_gen.go index 76736c955e..498ddf5701 100644 --- a/tdapi/tl_attachment_menu_bot_gen.go +++ b/tdapi/tl_attachment_menu_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_audio_gen.go b/tdapi/tl_audio_gen.go index 1ac06068ea..4d958dfce6 100644 --- a/tdapi/tl_audio_gen.go +++ b/tdapi/tl_audio_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_authentication_code_info_gen.go b/tdapi/tl_authentication_code_info_gen.go index 8c96a34dca..a7c1024f22 100644 --- a/tdapi/tl_authentication_code_info_gen.go +++ b/tdapi/tl_authentication_code_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_authentication_code_type_gen.go b/tdapi/tl_authentication_code_type_gen.go index df37c7e03d..af3d36ecb9 100644 --- a/tdapi/tl_authentication_code_type_gen.go +++ b/tdapi/tl_authentication_code_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_authorization_state_gen.go b/tdapi/tl_authorization_state_gen.go index 6201fb1981..0a4e21b28f 100644 --- a/tdapi/tl_authorization_state_gen.go +++ b/tdapi/tl_authorization_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_auto_download_settings_gen.go b/tdapi/tl_auto_download_settings_gen.go index eb0e2f7180..d66c4fd2fa 100644 --- a/tdapi/tl_auto_download_settings_gen.go +++ b/tdapi/tl_auto_download_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_auto_download_settings_presets_gen.go b/tdapi/tl_auto_download_settings_presets_gen.go index 7149b492d4..14345ce396 100644 --- a/tdapi/tl_auto_download_settings_presets_gen.go +++ b/tdapi/tl_auto_download_settings_presets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_autosave_settings_exception_gen.go b/tdapi/tl_autosave_settings_exception_gen.go index e09b3746c0..ff376aedb6 100644 --- a/tdapi/tl_autosave_settings_exception_gen.go +++ b/tdapi/tl_autosave_settings_exception_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_autosave_settings_gen.go b/tdapi/tl_autosave_settings_gen.go index 2c336228b8..100614b668 100644 --- a/tdapi/tl_autosave_settings_gen.go +++ b/tdapi/tl_autosave_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_autosave_settings_scope_gen.go b/tdapi/tl_autosave_settings_scope_gen.go index 0870ba3fcf..4a6670ec73 100644 --- a/tdapi/tl_autosave_settings_scope_gen.go +++ b/tdapi/tl_autosave_settings_scope_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_available_reaction_gen.go b/tdapi/tl_available_reaction_gen.go index 98fdbb5791..e8fdf3fcb1 100644 --- a/tdapi/tl_available_reaction_gen.go +++ b/tdapi/tl_available_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_available_reactions_gen.go b/tdapi/tl_available_reactions_gen.go index fa09e3b63e..f7f3577a11 100644 --- a/tdapi/tl_available_reactions_gen.go +++ b/tdapi/tl_available_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_background_fill_gen.go b/tdapi/tl_background_fill_gen.go index e8247ad6ee..6b0ab4c055 100644 --- a/tdapi/tl_background_fill_gen.go +++ b/tdapi/tl_background_fill_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_background_gen.go b/tdapi/tl_background_gen.go index fccaefa007..31ab072d26 100644 --- a/tdapi/tl_background_gen.go +++ b/tdapi/tl_background_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_background_type_gen.go b/tdapi/tl_background_type_gen.go index 971d602e1c..8cde83f9fc 100644 --- a/tdapi/tl_background_type_gen.go +++ b/tdapi/tl_background_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_backgrounds_gen.go b/tdapi/tl_backgrounds_gen.go index 2c17f0277e..0d1a8dc072 100644 --- a/tdapi/tl_backgrounds_gen.go +++ b/tdapi/tl_backgrounds_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_ban_chat_member_gen.go b/tdapi/tl_ban_chat_member_gen.go index 8473123898..0e9cae782e 100644 --- a/tdapi/tl_ban_chat_member_gen.go +++ b/tdapi/tl_ban_chat_member_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bank_card_action_open_url_gen.go b/tdapi/tl_bank_card_action_open_url_gen.go index 909c3f5620..ff6e058320 100644 --- a/tdapi/tl_bank_card_action_open_url_gen.go +++ b/tdapi/tl_bank_card_action_open_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bank_card_info_gen.go b/tdapi/tl_bank_card_info_gen.go index 48828e540b..fad1642e62 100644 --- a/tdapi/tl_bank_card_info_gen.go +++ b/tdapi/tl_bank_card_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_basic_group_full_info_gen.go b/tdapi/tl_basic_group_full_info_gen.go index b58994b20f..8fc92cf28b 100644 --- a/tdapi/tl_basic_group_full_info_gen.go +++ b/tdapi/tl_basic_group_full_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_basic_group_gen.go b/tdapi/tl_basic_group_gen.go index 70dd50ea47..69f7141dc6 100644 --- a/tdapi/tl_basic_group_gen.go +++ b/tdapi/tl_basic_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_birthdate_gen.go b/tdapi/tl_birthdate_gen.go index e87623401f..0bf218671d 100644 --- a/tdapi/tl_birthdate_gen.go +++ b/tdapi/tl_birthdate_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_block_list_gen.go b/tdapi/tl_block_list_gen.go index 8080800464..993f70acf4 100644 --- a/tdapi/tl_block_list_gen.go +++ b/tdapi/tl_block_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_block_message_sender_from_replies_gen.go b/tdapi/tl_block_message_sender_from_replies_gen.go index 45d71be4d0..ba3ed39d49 100644 --- a/tdapi/tl_block_message_sender_from_replies_gen.go +++ b/tdapi/tl_block_message_sender_from_replies_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bool_gen.go b/tdapi/tl_bool_gen.go index fbb083ff01..d1176d13b8 100644 --- a/tdapi/tl_bool_gen.go +++ b/tdapi/tl_bool_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_boost_chat_gen.go b/tdapi/tl_boost_chat_gen.go index 9f866a9399..d528836196 100644 --- a/tdapi/tl_boost_chat_gen.go +++ b/tdapi/tl_boost_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_command_gen.go b/tdapi/tl_bot_command_gen.go index 0aa6c2cdc0..302ec85609 100644 --- a/tdapi/tl_bot_command_gen.go +++ b/tdapi/tl_bot_command_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_command_scope_gen.go b/tdapi/tl_bot_command_scope_gen.go index 510744e606..610310cd6b 100644 --- a/tdapi/tl_bot_command_scope_gen.go +++ b/tdapi/tl_bot_command_scope_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_commands_gen.go b/tdapi/tl_bot_commands_gen.go index c8af7ff4d3..2edff6a9ad 100644 --- a/tdapi/tl_bot_commands_gen.go +++ b/tdapi/tl_bot_commands_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_info_gen.go b/tdapi/tl_bot_info_gen.go index af7c52c432..5d574c431e 100644 --- a/tdapi/tl_bot_info_gen.go +++ b/tdapi/tl_bot_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_media_preview_gen.go b/tdapi/tl_bot_media_preview_gen.go index cff5db6fb1..8c94057a74 100644 --- a/tdapi/tl_bot_media_preview_gen.go +++ b/tdapi/tl_bot_media_preview_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_media_preview_info_gen.go b/tdapi/tl_bot_media_preview_info_gen.go index dd2f83556b..7b4de90dca 100644 --- a/tdapi/tl_bot_media_preview_info_gen.go +++ b/tdapi/tl_bot_media_preview_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_media_previews_gen.go b/tdapi/tl_bot_media_previews_gen.go index aee920f4db..35712d1218 100644 --- a/tdapi/tl_bot_media_previews_gen.go +++ b/tdapi/tl_bot_media_previews_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_menu_button_gen.go b/tdapi/tl_bot_menu_button_gen.go index 29fb3d1ea7..38e83fce8d 100644 --- a/tdapi/tl_bot_menu_button_gen.go +++ b/tdapi/tl_bot_menu_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_transaction_purpose_gen.go b/tdapi/tl_bot_transaction_purpose_gen.go index 4e65981d61..0d2481ea3d 100644 --- a/tdapi/tl_bot_transaction_purpose_gen.go +++ b/tdapi/tl_bot_transaction_purpose_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bot_write_access_allow_reason_gen.go b/tdapi/tl_bot_write_access_allow_reason_gen.go index f9c7e04b10..6080605cc4 100644 --- a/tdapi/tl_bot_write_access_allow_reason_gen.go +++ b/tdapi/tl_bot_write_access_allow_reason_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_away_message_schedule_gen.go b/tdapi/tl_business_away_message_schedule_gen.go index b1b5aa6d87..4b76e11add 100644 --- a/tdapi/tl_business_away_message_schedule_gen.go +++ b/tdapi/tl_business_away_message_schedule_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_away_message_settings_gen.go b/tdapi/tl_business_away_message_settings_gen.go index 8e78f86e11..ccd2741218 100644 --- a/tdapi/tl_business_away_message_settings_gen.go +++ b/tdapi/tl_business_away_message_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_bot_manage_bar_gen.go b/tdapi/tl_business_bot_manage_bar_gen.go index 5483d1b2b1..b313ce56f8 100644 --- a/tdapi/tl_business_bot_manage_bar_gen.go +++ b/tdapi/tl_business_bot_manage_bar_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_chat_link_gen.go b/tdapi/tl_business_chat_link_gen.go index 73a93dad13..c4950eb877 100644 --- a/tdapi/tl_business_chat_link_gen.go +++ b/tdapi/tl_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_chat_link_info_gen.go b/tdapi/tl_business_chat_link_info_gen.go index ea02d219c2..15ffd3a13f 100644 --- a/tdapi/tl_business_chat_link_info_gen.go +++ b/tdapi/tl_business_chat_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_chat_links_gen.go b/tdapi/tl_business_chat_links_gen.go index 4a59c7fa7b..e9b16fdb8b 100644 --- a/tdapi/tl_business_chat_links_gen.go +++ b/tdapi/tl_business_chat_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_connected_bot_gen.go b/tdapi/tl_business_connected_bot_gen.go index b0a8721b93..5363f4670b 100644 --- a/tdapi/tl_business_connected_bot_gen.go +++ b/tdapi/tl_business_connected_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_connection_gen.go b/tdapi/tl_business_connection_gen.go index 69f3212ac6..744e240620 100644 --- a/tdapi/tl_business_connection_gen.go +++ b/tdapi/tl_business_connection_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_feature_gen.go b/tdapi/tl_business_feature_gen.go index ebb45e4121..7a1e1d2a1f 100644 --- a/tdapi/tl_business_feature_gen.go +++ b/tdapi/tl_business_feature_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_feature_promotion_animation_gen.go b/tdapi/tl_business_feature_promotion_animation_gen.go index 30948c5542..3d88b158d8 100644 --- a/tdapi/tl_business_feature_promotion_animation_gen.go +++ b/tdapi/tl_business_feature_promotion_animation_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_features_gen.go b/tdapi/tl_business_features_gen.go index 9c8483b3cb..e468012114 100644 --- a/tdapi/tl_business_features_gen.go +++ b/tdapi/tl_business_features_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_greeting_message_settings_gen.go b/tdapi/tl_business_greeting_message_settings_gen.go index 5dd79860b4..8b8cd83fef 100644 --- a/tdapi/tl_business_greeting_message_settings_gen.go +++ b/tdapi/tl_business_greeting_message_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_info_gen.go b/tdapi/tl_business_info_gen.go index dfbeb2fd13..dedca2397f 100644 --- a/tdapi/tl_business_info_gen.go +++ b/tdapi/tl_business_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_location_gen.go b/tdapi/tl_business_location_gen.go index 0807773e3a..413b0bd79b 100644 --- a/tdapi/tl_business_location_gen.go +++ b/tdapi/tl_business_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_message_gen.go b/tdapi/tl_business_message_gen.go index ed2510bf0a..c16da15e11 100644 --- a/tdapi/tl_business_message_gen.go +++ b/tdapi/tl_business_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_messages_gen.go b/tdapi/tl_business_messages_gen.go index b9767efb6f..2424c4a938 100644 --- a/tdapi/tl_business_messages_gen.go +++ b/tdapi/tl_business_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_opening_hours_gen.go b/tdapi/tl_business_opening_hours_gen.go index 807adf984c..52ea9392c3 100644 --- a/tdapi/tl_business_opening_hours_gen.go +++ b/tdapi/tl_business_opening_hours_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_opening_hours_interval_gen.go b/tdapi/tl_business_opening_hours_interval_gen.go index 8170138a57..2baaf23ac9 100644 --- a/tdapi/tl_business_opening_hours_interval_gen.go +++ b/tdapi/tl_business_opening_hours_interval_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_recipients_gen.go b/tdapi/tl_business_recipients_gen.go index 9d5add3f94..5cbef90b44 100644 --- a/tdapi/tl_business_recipients_gen.go +++ b/tdapi/tl_business_recipients_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_business_start_page_gen.go b/tdapi/tl_business_start_page_gen.go index 058daac794..4ceda81ae8 100644 --- a/tdapi/tl_business_start_page_gen.go +++ b/tdapi/tl_business_start_page_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_bytes_gen.go b/tdapi/tl_bytes_gen.go index 64a0088dbf..a11728c80a 100644 --- a/tdapi/tl_bytes_gen.go +++ b/tdapi/tl_bytes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_call_discard_reason_gen.go b/tdapi/tl_call_discard_reason_gen.go index 4e4a0c5195..da8efbe5a9 100644 --- a/tdapi/tl_call_discard_reason_gen.go +++ b/tdapi/tl_call_discard_reason_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_call_gen.go b/tdapi/tl_call_gen.go index 1ab206c542..e5901e01fc 100644 --- a/tdapi/tl_call_gen.go +++ b/tdapi/tl_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_call_id_gen.go b/tdapi/tl_call_id_gen.go index b524224bad..38e57bd432 100644 --- a/tdapi/tl_call_id_gen.go +++ b/tdapi/tl_call_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_call_problem_gen.go b/tdapi/tl_call_problem_gen.go index 1a8a0ec3c8..296000b84e 100644 --- a/tdapi/tl_call_problem_gen.go +++ b/tdapi/tl_call_problem_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_call_protocol_gen.go b/tdapi/tl_call_protocol_gen.go index 4ab08f9d28..3672aa8278 100644 --- a/tdapi/tl_call_protocol_gen.go +++ b/tdapi/tl_call_protocol_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_call_server_gen.go b/tdapi/tl_call_server_gen.go index 848e20fc17..77a0616ffc 100644 --- a/tdapi/tl_call_server_gen.go +++ b/tdapi/tl_call_server_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_call_server_type_gen.go b/tdapi/tl_call_server_type_gen.go index d576a9206d..eaba572ca0 100644 --- a/tdapi/tl_call_server_type_gen.go +++ b/tdapi/tl_call_server_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_call_state_gen.go b/tdapi/tl_call_state_gen.go index 14303a35d1..b8f1902a5c 100644 --- a/tdapi/tl_call_state_gen.go +++ b/tdapi/tl_call_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_callback_query_answer_gen.go b/tdapi/tl_callback_query_answer_gen.go index fb4a5339bc..96704aa587 100644 --- a/tdapi/tl_callback_query_answer_gen.go +++ b/tdapi/tl_callback_query_answer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_callback_query_payload_gen.go b/tdapi/tl_callback_query_payload_gen.go index 81b2b79cc4..8e6172024c 100644 --- a/tdapi/tl_callback_query_payload_gen.go +++ b/tdapi/tl_callback_query_payload_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_can_bot_send_messages_gen.go b/tdapi/tl_can_bot_send_messages_gen.go index 2ab66584c3..76554f9c45 100644 --- a/tdapi/tl_can_bot_send_messages_gen.go +++ b/tdapi/tl_can_bot_send_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_can_purchase_from_store_gen.go b/tdapi/tl_can_purchase_from_store_gen.go index 74791e83fa..a5d81fad1e 100644 --- a/tdapi/tl_can_purchase_from_store_gen.go +++ b/tdapi/tl_can_purchase_from_store_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_can_send_message_to_user_gen.go b/tdapi/tl_can_send_message_to_user_gen.go index 57f49ef665..dd8288afe1 100644 --- a/tdapi/tl_can_send_message_to_user_gen.go +++ b/tdapi/tl_can_send_message_to_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_can_send_message_to_user_result_gen.go b/tdapi/tl_can_send_message_to_user_result_gen.go index 4db39c3d8d..c3cff2e68a 100644 --- a/tdapi/tl_can_send_message_to_user_result_gen.go +++ b/tdapi/tl_can_send_message_to_user_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_can_send_story_gen.go b/tdapi/tl_can_send_story_gen.go index 8b779beee4..8b07a0d152 100644 --- a/tdapi/tl_can_send_story_gen.go +++ b/tdapi/tl_can_send_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_can_send_story_result_gen.go b/tdapi/tl_can_send_story_result_gen.go index 8b0204bfad..590c1c0051 100644 --- a/tdapi/tl_can_send_story_result_gen.go +++ b/tdapi/tl_can_send_story_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_can_transfer_ownership_gen.go b/tdapi/tl_can_transfer_ownership_gen.go index c0e48f9f34..938f1926db 100644 --- a/tdapi/tl_can_transfer_ownership_gen.go +++ b/tdapi/tl_can_transfer_ownership_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_can_transfer_ownership_result_gen.go b/tdapi/tl_can_transfer_ownership_result_gen.go index 868c5adbf8..da19fa7ca1 100644 --- a/tdapi/tl_can_transfer_ownership_result_gen.go +++ b/tdapi/tl_can_transfer_ownership_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_cancel_download_file_gen.go b/tdapi/tl_cancel_download_file_gen.go index e90accfa85..58ecd8b00a 100644 --- a/tdapi/tl_cancel_download_file_gen.go +++ b/tdapi/tl_cancel_download_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_cancel_password_reset_gen.go b/tdapi/tl_cancel_password_reset_gen.go index 38b0ecb6da..d727123db4 100644 --- a/tdapi/tl_cancel_password_reset_gen.go +++ b/tdapi/tl_cancel_password_reset_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_cancel_preliminary_upload_file_gen.go b/tdapi/tl_cancel_preliminary_upload_file_gen.go index db436a9bc3..c2bbe2ec36 100644 --- a/tdapi/tl_cancel_preliminary_upload_file_gen.go +++ b/tdapi/tl_cancel_preliminary_upload_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_cancel_recovery_email_address_verification_gen.go b/tdapi/tl_cancel_recovery_email_address_verification_gen.go index a173f6d105..1bd07d2e32 100644 --- a/tdapi/tl_cancel_recovery_email_address_verification_gen.go +++ b/tdapi/tl_cancel_recovery_email_address_verification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_change_imported_contacts_gen.go b/tdapi/tl_change_imported_contacts_gen.go index ae0fabbdcc..5940f3fe63 100644 --- a/tdapi/tl_change_imported_contacts_gen.go +++ b/tdapi/tl_change_imported_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_change_sticker_set_gen.go b/tdapi/tl_change_sticker_set_gen.go index f98a26bd39..2eee06183e 100644 --- a/tdapi/tl_change_sticker_set_gen.go +++ b/tdapi/tl_change_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_action_bar_gen.go b/tdapi/tl_chat_action_bar_gen.go index f7b52e6a82..931b41eeba 100644 --- a/tdapi/tl_chat_action_bar_gen.go +++ b/tdapi/tl_chat_action_bar_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_action_gen.go b/tdapi/tl_chat_action_gen.go index 9014e18305..d85cf183a1 100644 --- a/tdapi/tl_chat_action_gen.go +++ b/tdapi/tl_chat_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_active_stories_gen.go b/tdapi/tl_chat_active_stories_gen.go index 53c41cfa3e..e281065be0 100644 --- a/tdapi/tl_chat_active_stories_gen.go +++ b/tdapi/tl_chat_active_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_administrator_gen.go b/tdapi/tl_chat_administrator_gen.go index 864992a493..0c67533bf0 100644 --- a/tdapi/tl_chat_administrator_gen.go +++ b/tdapi/tl_chat_administrator_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_administrator_rights_gen.go b/tdapi/tl_chat_administrator_rights_gen.go index d95960eed1..2c055e2efd 100644 --- a/tdapi/tl_chat_administrator_rights_gen.go +++ b/tdapi/tl_chat_administrator_rights_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_administrators_gen.go b/tdapi/tl_chat_administrators_gen.go index f220bc1628..1395cd34b9 100644 --- a/tdapi/tl_chat_administrators_gen.go +++ b/tdapi/tl_chat_administrators_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_available_reactions_gen.go b/tdapi/tl_chat_available_reactions_gen.go index 86e6b4edb5..863f55f9eb 100644 --- a/tdapi/tl_chat_available_reactions_gen.go +++ b/tdapi/tl_chat_available_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_background_gen.go b/tdapi/tl_chat_background_gen.go index 455ff9baad..8a03163ac8 100644 --- a/tdapi/tl_chat_background_gen.go +++ b/tdapi/tl_chat_background_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_boost_features_gen.go b/tdapi/tl_chat_boost_features_gen.go index 11885b9f53..db1c4e72f8 100644 --- a/tdapi/tl_chat_boost_features_gen.go +++ b/tdapi/tl_chat_boost_features_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_boost_gen.go b/tdapi/tl_chat_boost_gen.go index fe72ea2542..9fe5764b5b 100644 --- a/tdapi/tl_chat_boost_gen.go +++ b/tdapi/tl_chat_boost_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_boost_level_features_gen.go b/tdapi/tl_chat_boost_level_features_gen.go index 264d947b1e..4e7180a3d1 100644 --- a/tdapi/tl_chat_boost_level_features_gen.go +++ b/tdapi/tl_chat_boost_level_features_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_boost_link_gen.go b/tdapi/tl_chat_boost_link_gen.go index b0ef559f9f..b824c91bd3 100644 --- a/tdapi/tl_chat_boost_link_gen.go +++ b/tdapi/tl_chat_boost_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_boost_link_info_gen.go b/tdapi/tl_chat_boost_link_info_gen.go index 57259b8ba8..921ed4a755 100644 --- a/tdapi/tl_chat_boost_link_info_gen.go +++ b/tdapi/tl_chat_boost_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_boost_slot_gen.go b/tdapi/tl_chat_boost_slot_gen.go index 67a2b2c504..c791308f54 100644 --- a/tdapi/tl_chat_boost_slot_gen.go +++ b/tdapi/tl_chat_boost_slot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_boost_slots_gen.go b/tdapi/tl_chat_boost_slots_gen.go index 295160308c..b925589d1d 100644 --- a/tdapi/tl_chat_boost_slots_gen.go +++ b/tdapi/tl_chat_boost_slots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_boost_source_gen.go b/tdapi/tl_chat_boost_source_gen.go index f217962b6b..2506f4cd18 100644 --- a/tdapi/tl_chat_boost_source_gen.go +++ b/tdapi/tl_chat_boost_source_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_boost_status_gen.go b/tdapi/tl_chat_boost_status_gen.go index cd3cc703b4..9e9031d4c2 100644 --- a/tdapi/tl_chat_boost_status_gen.go +++ b/tdapi/tl_chat_boost_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_event_action_gen.go b/tdapi/tl_chat_event_action_gen.go index 06f5bbca24..825742216e 100644 --- a/tdapi/tl_chat_event_action_gen.go +++ b/tdapi/tl_chat_event_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_event_gen.go b/tdapi/tl_chat_event_gen.go index a1d80b2339..2b20f0ef4e 100644 --- a/tdapi/tl_chat_event_gen.go +++ b/tdapi/tl_chat_event_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_event_log_filters_gen.go b/tdapi/tl_chat_event_log_filters_gen.go index 71be6a38da..82eb45b335 100644 --- a/tdapi/tl_chat_event_log_filters_gen.go +++ b/tdapi/tl_chat_event_log_filters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_events_gen.go b/tdapi/tl_chat_events_gen.go index 5b30fe3ee4..72c5e20642 100644 --- a/tdapi/tl_chat_events_gen.go +++ b/tdapi/tl_chat_events_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_folder_gen.go b/tdapi/tl_chat_folder_gen.go index 4b96ada02b..c8cf46c0be 100644 --- a/tdapi/tl_chat_folder_gen.go +++ b/tdapi/tl_chat_folder_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_folder_icon_gen.go b/tdapi/tl_chat_folder_icon_gen.go index eb4de6321e..3926981c52 100644 --- a/tdapi/tl_chat_folder_icon_gen.go +++ b/tdapi/tl_chat_folder_icon_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_folder_info_gen.go b/tdapi/tl_chat_folder_info_gen.go index 9c14f1b832..fd3a4633d1 100644 --- a/tdapi/tl_chat_folder_info_gen.go +++ b/tdapi/tl_chat_folder_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_folder_invite_link_gen.go b/tdapi/tl_chat_folder_invite_link_gen.go index 4c53889a97..acd23c7b80 100644 --- a/tdapi/tl_chat_folder_invite_link_gen.go +++ b/tdapi/tl_chat_folder_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_folder_invite_link_info_gen.go b/tdapi/tl_chat_folder_invite_link_info_gen.go index 0cb376d470..4030922eef 100644 --- a/tdapi/tl_chat_folder_invite_link_info_gen.go +++ b/tdapi/tl_chat_folder_invite_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_folder_invite_links_gen.go b/tdapi/tl_chat_folder_invite_links_gen.go index ebb775c651..0d62187adf 100644 --- a/tdapi/tl_chat_folder_invite_links_gen.go +++ b/tdapi/tl_chat_folder_invite_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_gen.go b/tdapi/tl_chat_gen.go index d7ea66eef2..1d450333d7 100644 --- a/tdapi/tl_chat_gen.go +++ b/tdapi/tl_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_invite_link_count_gen.go b/tdapi/tl_chat_invite_link_count_gen.go index 1de8c313f2..702a2cb071 100644 --- a/tdapi/tl_chat_invite_link_count_gen.go +++ b/tdapi/tl_chat_invite_link_count_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_invite_link_counts_gen.go b/tdapi/tl_chat_invite_link_counts_gen.go index b69a8ac69d..81197904db 100644 --- a/tdapi/tl_chat_invite_link_counts_gen.go +++ b/tdapi/tl_chat_invite_link_counts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_invite_link_gen.go b/tdapi/tl_chat_invite_link_gen.go index 41de06247c..973f3798e4 100644 --- a/tdapi/tl_chat_invite_link_gen.go +++ b/tdapi/tl_chat_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_invite_link_info_gen.go b/tdapi/tl_chat_invite_link_info_gen.go index 39d0b32d73..9335150cdc 100644 --- a/tdapi/tl_chat_invite_link_info_gen.go +++ b/tdapi/tl_chat_invite_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_invite_link_member_gen.go b/tdapi/tl_chat_invite_link_member_gen.go index e7775baf58..5b1c3f9afd 100644 --- a/tdapi/tl_chat_invite_link_member_gen.go +++ b/tdapi/tl_chat_invite_link_member_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_invite_link_members_gen.go b/tdapi/tl_chat_invite_link_members_gen.go index a03ed4f3ca..ef11280c0b 100644 --- a/tdapi/tl_chat_invite_link_members_gen.go +++ b/tdapi/tl_chat_invite_link_members_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_invite_link_subscription_info_gen.go b/tdapi/tl_chat_invite_link_subscription_info_gen.go index 2e9d928cc7..c2abefa929 100644 --- a/tdapi/tl_chat_invite_link_subscription_info_gen.go +++ b/tdapi/tl_chat_invite_link_subscription_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_invite_links_gen.go b/tdapi/tl_chat_invite_links_gen.go index fb5ce76ac1..faef5c57b0 100644 --- a/tdapi/tl_chat_invite_links_gen.go +++ b/tdapi/tl_chat_invite_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_join_request_gen.go b/tdapi/tl_chat_join_request_gen.go index 9374a687c3..2e1be6f796 100644 --- a/tdapi/tl_chat_join_request_gen.go +++ b/tdapi/tl_chat_join_request_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_join_requests_gen.go b/tdapi/tl_chat_join_requests_gen.go index 95f4b175c5..ea8e971cf1 100644 --- a/tdapi/tl_chat_join_requests_gen.go +++ b/tdapi/tl_chat_join_requests_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_join_requests_info_gen.go b/tdapi/tl_chat_join_requests_info_gen.go index f81e6a77b0..15ca96733d 100644 --- a/tdapi/tl_chat_join_requests_info_gen.go +++ b/tdapi/tl_chat_join_requests_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_list_gen.go b/tdapi/tl_chat_list_gen.go index 3999390a2f..907bba80c3 100644 --- a/tdapi/tl_chat_list_gen.go +++ b/tdapi/tl_chat_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_lists_gen.go b/tdapi/tl_chat_lists_gen.go index 17291548e7..d7493a8f53 100644 --- a/tdapi/tl_chat_lists_gen.go +++ b/tdapi/tl_chat_lists_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_location_gen.go b/tdapi/tl_chat_location_gen.go index de12b51da2..50cfe5d6b7 100644 --- a/tdapi/tl_chat_location_gen.go +++ b/tdapi/tl_chat_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_member_gen.go b/tdapi/tl_chat_member_gen.go index 8aa27eee58..35626af8d2 100644 --- a/tdapi/tl_chat_member_gen.go +++ b/tdapi/tl_chat_member_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_member_status_gen.go b/tdapi/tl_chat_member_status_gen.go index e084b92658..e6c234185b 100644 --- a/tdapi/tl_chat_member_status_gen.go +++ b/tdapi/tl_chat_member_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_members_filter_gen.go b/tdapi/tl_chat_members_filter_gen.go index 5ae9bc648c..c84a94b795 100644 --- a/tdapi/tl_chat_members_filter_gen.go +++ b/tdapi/tl_chat_members_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_members_gen.go b/tdapi/tl_chat_members_gen.go index 736bd443b1..ddd390e289 100644 --- a/tdapi/tl_chat_members_gen.go +++ b/tdapi/tl_chat_members_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_message_sender_gen.go b/tdapi/tl_chat_message_sender_gen.go index 666700916a..33f56c8e65 100644 --- a/tdapi/tl_chat_message_sender_gen.go +++ b/tdapi/tl_chat_message_sender_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_message_senders_gen.go b/tdapi/tl_chat_message_senders_gen.go index 5183600947..2bcee2e16b 100644 --- a/tdapi/tl_chat_message_senders_gen.go +++ b/tdapi/tl_chat_message_senders_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_notification_settings_gen.go b/tdapi/tl_chat_notification_settings_gen.go index e80a7e6c02..107cb4f669 100644 --- a/tdapi/tl_chat_notification_settings_gen.go +++ b/tdapi/tl_chat_notification_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_permissions_gen.go b/tdapi/tl_chat_permissions_gen.go index fd2c6e8cfa..b6f1e592d3 100644 --- a/tdapi/tl_chat_permissions_gen.go +++ b/tdapi/tl_chat_permissions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_photo_gen.go b/tdapi/tl_chat_photo_gen.go index 185388e7d7..0cd1e1ee82 100644 --- a/tdapi/tl_chat_photo_gen.go +++ b/tdapi/tl_chat_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_photo_info_gen.go b/tdapi/tl_chat_photo_info_gen.go index 9048157107..8f57059df1 100644 --- a/tdapi/tl_chat_photo_info_gen.go +++ b/tdapi/tl_chat_photo_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_photo_sticker_gen.go b/tdapi/tl_chat_photo_sticker_gen.go index 2ef539fbaa..d4eb5fbe3e 100644 --- a/tdapi/tl_chat_photo_sticker_gen.go +++ b/tdapi/tl_chat_photo_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_photo_sticker_type_gen.go b/tdapi/tl_chat_photo_sticker_type_gen.go index 294f9898b3..2ec77ba95b 100644 --- a/tdapi/tl_chat_photo_sticker_type_gen.go +++ b/tdapi/tl_chat_photo_sticker_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_photos_gen.go b/tdapi/tl_chat_photos_gen.go index e1418a7d63..43ab858acb 100644 --- a/tdapi/tl_chat_photos_gen.go +++ b/tdapi/tl_chat_photos_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_position_gen.go b/tdapi/tl_chat_position_gen.go index 16e1418b66..3ddf347ca7 100644 --- a/tdapi/tl_chat_position_gen.go +++ b/tdapi/tl_chat_position_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_revenue_amount_gen.go b/tdapi/tl_chat_revenue_amount_gen.go index ea91f92966..8982c552f2 100644 --- a/tdapi/tl_chat_revenue_amount_gen.go +++ b/tdapi/tl_chat_revenue_amount_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_revenue_statistics_gen.go b/tdapi/tl_chat_revenue_statistics_gen.go index c49480301a..595dd8c620 100644 --- a/tdapi/tl_chat_revenue_statistics_gen.go +++ b/tdapi/tl_chat_revenue_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_revenue_transaction_gen.go b/tdapi/tl_chat_revenue_transaction_gen.go index 0da9c3b305..4d1edcfd5c 100644 --- a/tdapi/tl_chat_revenue_transaction_gen.go +++ b/tdapi/tl_chat_revenue_transaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_revenue_transaction_type_gen.go b/tdapi/tl_chat_revenue_transaction_type_gen.go index f7b3277b7e..a60cb59b44 100644 --- a/tdapi/tl_chat_revenue_transaction_type_gen.go +++ b/tdapi/tl_chat_revenue_transaction_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_revenue_transactions_gen.go b/tdapi/tl_chat_revenue_transactions_gen.go index 90a1446e58..576fc2542f 100644 --- a/tdapi/tl_chat_revenue_transactions_gen.go +++ b/tdapi/tl_chat_revenue_transactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_source_gen.go b/tdapi/tl_chat_source_gen.go index 4a74735cdd..28bcdab307 100644 --- a/tdapi/tl_chat_source_gen.go +++ b/tdapi/tl_chat_source_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_statistics_administrator_actions_info_gen.go b/tdapi/tl_chat_statistics_administrator_actions_info_gen.go index a3a81f897c..5e00df68d6 100644 --- a/tdapi/tl_chat_statistics_administrator_actions_info_gen.go +++ b/tdapi/tl_chat_statistics_administrator_actions_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_statistics_gen.go b/tdapi/tl_chat_statistics_gen.go index a6f6c64424..8d23f1f441 100644 --- a/tdapi/tl_chat_statistics_gen.go +++ b/tdapi/tl_chat_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_statistics_interaction_info_gen.go b/tdapi/tl_chat_statistics_interaction_info_gen.go index 59e423e526..22e89e1a65 100644 --- a/tdapi/tl_chat_statistics_interaction_info_gen.go +++ b/tdapi/tl_chat_statistics_interaction_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_statistics_inviter_info_gen.go b/tdapi/tl_chat_statistics_inviter_info_gen.go index 13cc4ee22d..345956bf5b 100644 --- a/tdapi/tl_chat_statistics_inviter_info_gen.go +++ b/tdapi/tl_chat_statistics_inviter_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_statistics_message_sender_info_gen.go b/tdapi/tl_chat_statistics_message_sender_info_gen.go index d92f1e1e99..ccbe04f30b 100644 --- a/tdapi/tl_chat_statistics_message_sender_info_gen.go +++ b/tdapi/tl_chat_statistics_message_sender_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_statistics_object_type_gen.go b/tdapi/tl_chat_statistics_object_type_gen.go index e8342dc142..ea4e400537 100644 --- a/tdapi/tl_chat_statistics_object_type_gen.go +++ b/tdapi/tl_chat_statistics_object_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_theme_gen.go b/tdapi/tl_chat_theme_gen.go index 1c11b48a62..0611b3a5fe 100644 --- a/tdapi/tl_chat_theme_gen.go +++ b/tdapi/tl_chat_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_transaction_purpose_gen.go b/tdapi/tl_chat_transaction_purpose_gen.go index 8fc867fe74..a68cd63016 100644 --- a/tdapi/tl_chat_transaction_purpose_gen.go +++ b/tdapi/tl_chat_transaction_purpose_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chat_type_gen.go b/tdapi/tl_chat_type_gen.go index 1d0bee6b76..290aa80ed5 100644 --- a/tdapi/tl_chat_type_gen.go +++ b/tdapi/tl_chat_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_chats_gen.go b/tdapi/tl_chats_gen.go index 58ae16c059..d9c847a94c 100644 --- a/tdapi/tl_chats_gen.go +++ b/tdapi/tl_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_authentication_bot_token_gen.go b/tdapi/tl_check_authentication_bot_token_gen.go index 1a718b3bbd..d2fa5f069b 100644 --- a/tdapi/tl_check_authentication_bot_token_gen.go +++ b/tdapi/tl_check_authentication_bot_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_authentication_code_gen.go b/tdapi/tl_check_authentication_code_gen.go index a66fc189ba..24aab3ce57 100644 --- a/tdapi/tl_check_authentication_code_gen.go +++ b/tdapi/tl_check_authentication_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_authentication_email_code_gen.go b/tdapi/tl_check_authentication_email_code_gen.go index 7b4b454e2c..ea9a128532 100644 --- a/tdapi/tl_check_authentication_email_code_gen.go +++ b/tdapi/tl_check_authentication_email_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_authentication_password_gen.go b/tdapi/tl_check_authentication_password_gen.go index 6c3fa5ae2d..00e68e76ce 100644 --- a/tdapi/tl_check_authentication_password_gen.go +++ b/tdapi/tl_check_authentication_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_authentication_password_recovery_code_gen.go b/tdapi/tl_check_authentication_password_recovery_code_gen.go index 2e9af21e84..f0f3539d96 100644 --- a/tdapi/tl_check_authentication_password_recovery_code_gen.go +++ b/tdapi/tl_check_authentication_password_recovery_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_chat_folder_invite_link_gen.go b/tdapi/tl_check_chat_folder_invite_link_gen.go index 2dcb759d7d..612ae5032c 100644 --- a/tdapi/tl_check_chat_folder_invite_link_gen.go +++ b/tdapi/tl_check_chat_folder_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_chat_invite_link_gen.go b/tdapi/tl_check_chat_invite_link_gen.go index 308e4c3975..5b11adf83d 100644 --- a/tdapi/tl_check_chat_invite_link_gen.go +++ b/tdapi/tl_check_chat_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_chat_username_gen.go b/tdapi/tl_check_chat_username_gen.go index 5f89eb7b26..59ff4aa9d6 100644 --- a/tdapi/tl_check_chat_username_gen.go +++ b/tdapi/tl_check_chat_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_chat_username_result_gen.go b/tdapi/tl_check_chat_username_result_gen.go index c753dedf0b..5d85bf8f9f 100644 --- a/tdapi/tl_check_chat_username_result_gen.go +++ b/tdapi/tl_check_chat_username_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_created_public_chats_limit_gen.go b/tdapi/tl_check_created_public_chats_limit_gen.go index 522091c80c..e057eff96d 100644 --- a/tdapi/tl_check_created_public_chats_limit_gen.go +++ b/tdapi/tl_check_created_public_chats_limit_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_email_address_verification_code_gen.go b/tdapi/tl_check_email_address_verification_code_gen.go index 38bbcda74a..afb92ad46e 100644 --- a/tdapi/tl_check_email_address_verification_code_gen.go +++ b/tdapi/tl_check_email_address_verification_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_login_email_address_code_gen.go b/tdapi/tl_check_login_email_address_code_gen.go index e7861c72fc..c7ae12c3d8 100644 --- a/tdapi/tl_check_login_email_address_code_gen.go +++ b/tdapi/tl_check_login_email_address_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_password_recovery_code_gen.go b/tdapi/tl_check_password_recovery_code_gen.go index d65ffa0af2..f8f07df066 100644 --- a/tdapi/tl_check_password_recovery_code_gen.go +++ b/tdapi/tl_check_password_recovery_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_phone_number_code_gen.go b/tdapi/tl_check_phone_number_code_gen.go index 5d575c34d2..b03c8bf93c 100644 --- a/tdapi/tl_check_phone_number_code_gen.go +++ b/tdapi/tl_check_phone_number_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_premium_gift_code_gen.go b/tdapi/tl_check_premium_gift_code_gen.go index c11bf3cb57..db17dbae5b 100644 --- a/tdapi/tl_check_premium_gift_code_gen.go +++ b/tdapi/tl_check_premium_gift_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_quick_reply_shortcut_name_gen.go b/tdapi/tl_check_quick_reply_shortcut_name_gen.go index 9a4c2923aa..9a85c24037 100644 --- a/tdapi/tl_check_quick_reply_shortcut_name_gen.go +++ b/tdapi/tl_check_quick_reply_shortcut_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_recovery_email_address_code_gen.go b/tdapi/tl_check_recovery_email_address_code_gen.go index a86c6603c1..e8153ce011 100644 --- a/tdapi/tl_check_recovery_email_address_code_gen.go +++ b/tdapi/tl_check_recovery_email_address_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_sticker_set_name_gen.go b/tdapi/tl_check_sticker_set_name_gen.go index 77f302183e..8636c306cd 100644 --- a/tdapi/tl_check_sticker_set_name_gen.go +++ b/tdapi/tl_check_sticker_set_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_sticker_set_name_result_gen.go b/tdapi/tl_check_sticker_set_name_result_gen.go index 4656d54ff9..d7ea7b2293 100644 --- a/tdapi/tl_check_sticker_set_name_result_gen.go +++ b/tdapi/tl_check_sticker_set_name_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_check_web_app_file_download_gen.go b/tdapi/tl_check_web_app_file_download_gen.go index a853665619..e57b06b489 100644 --- a/tdapi/tl_check_web_app_file_download_gen.go +++ b/tdapi/tl_check_web_app_file_download_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_clean_file_name_gen.go b/tdapi/tl_clean_file_name_gen.go index bc2a303da0..01585ac1b9 100644 --- a/tdapi/tl_clean_file_name_gen.go +++ b/tdapi/tl_clean_file_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_clear_all_draft_messages_gen.go b/tdapi/tl_clear_all_draft_messages_gen.go index b1b2fef05c..a1bbcb285c 100644 --- a/tdapi/tl_clear_all_draft_messages_gen.go +++ b/tdapi/tl_clear_all_draft_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_clear_autosave_settings_exceptions_gen.go b/tdapi/tl_clear_autosave_settings_exceptions_gen.go index 68a2aa3f6d..96dd20e29e 100644 --- a/tdapi/tl_clear_autosave_settings_exceptions_gen.go +++ b/tdapi/tl_clear_autosave_settings_exceptions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_clear_imported_contacts_gen.go b/tdapi/tl_clear_imported_contacts_gen.go index c8a25cd95e..450dbc6353 100644 --- a/tdapi/tl_clear_imported_contacts_gen.go +++ b/tdapi/tl_clear_imported_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_clear_recent_emoji_statuses_gen.go b/tdapi/tl_clear_recent_emoji_statuses_gen.go index a67939e882..d03485e01f 100644 --- a/tdapi/tl_clear_recent_emoji_statuses_gen.go +++ b/tdapi/tl_clear_recent_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_clear_recent_reactions_gen.go b/tdapi/tl_clear_recent_reactions_gen.go index e1afb57d68..8c8f31ed10 100644 --- a/tdapi/tl_clear_recent_reactions_gen.go +++ b/tdapi/tl_clear_recent_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_clear_recent_stickers_gen.go b/tdapi/tl_clear_recent_stickers_gen.go index 319b46981c..c691698e5e 100644 --- a/tdapi/tl_clear_recent_stickers_gen.go +++ b/tdapi/tl_clear_recent_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_clear_recently_found_chats_gen.go b/tdapi/tl_clear_recently_found_chats_gen.go index cf58d72481..309b5e29ca 100644 --- a/tdapi/tl_clear_recently_found_chats_gen.go +++ b/tdapi/tl_clear_recently_found_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_clear_searched_for_tags_gen.go b/tdapi/tl_clear_searched_for_tags_gen.go index d8be447bd5..3803fb2178 100644 --- a/tdapi/tl_clear_searched_for_tags_gen.go +++ b/tdapi/tl_clear_searched_for_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_click_animated_emoji_message_gen.go b/tdapi/tl_click_animated_emoji_message_gen.go index 35c12949a6..1f884ddd5f 100644 --- a/tdapi/tl_click_animated_emoji_message_gen.go +++ b/tdapi/tl_click_animated_emoji_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_click_chat_sponsored_message_gen.go b/tdapi/tl_click_chat_sponsored_message_gen.go index 649f75df6d..91baf38986 100644 --- a/tdapi/tl_click_chat_sponsored_message_gen.go +++ b/tdapi/tl_click_chat_sponsored_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_click_premium_subscription_button_gen.go b/tdapi/tl_click_premium_subscription_button_gen.go index e251dfe2c8..b417ac52bb 100644 --- a/tdapi/tl_click_premium_subscription_button_gen.go +++ b/tdapi/tl_click_premium_subscription_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_client_gen.go b/tdapi/tl_client_gen.go index 655b86ae2c..6ad5ab268a 100644 --- a/tdapi/tl_client_gen.go +++ b/tdapi/tl_client_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_close_birthday_user_gen.go b/tdapi/tl_close_birthday_user_gen.go index c536166bb5..f081df35e9 100644 --- a/tdapi/tl_close_birthday_user_gen.go +++ b/tdapi/tl_close_birthday_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_close_chat_gen.go b/tdapi/tl_close_chat_gen.go index 4ac2289bed..740d0daa87 100644 --- a/tdapi/tl_close_chat_gen.go +++ b/tdapi/tl_close_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_close_gen.go b/tdapi/tl_close_gen.go index f80759aeb9..ec56be29ea 100644 --- a/tdapi/tl_close_gen.go +++ b/tdapi/tl_close_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_close_secret_chat_gen.go b/tdapi/tl_close_secret_chat_gen.go index 9a12b018cb..ec425ea1e6 100644 --- a/tdapi/tl_close_secret_chat_gen.go +++ b/tdapi/tl_close_secret_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_close_story_gen.go b/tdapi/tl_close_story_gen.go index a383ed0615..60851accf3 100644 --- a/tdapi/tl_close_story_gen.go +++ b/tdapi/tl_close_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_close_web_app_gen.go b/tdapi/tl_close_web_app_gen.go index 5182996745..07f967e049 100644 --- a/tdapi/tl_close_web_app_gen.go +++ b/tdapi/tl_close_web_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_closed_vector_path_gen.go b/tdapi/tl_closed_vector_path_gen.go index e31730bf2b..b7a6610418 100644 --- a/tdapi/tl_closed_vector_path_gen.go +++ b/tdapi/tl_closed_vector_path_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_collectible_item_info_gen.go b/tdapi/tl_collectible_item_info_gen.go index 6b1a186dbd..6ba45c3ce6 100644 --- a/tdapi/tl_collectible_item_info_gen.go +++ b/tdapi/tl_collectible_item_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_collectible_item_type_gen.go b/tdapi/tl_collectible_item_type_gen.go index 0c6e84ca5e..1603626a48 100644 --- a/tdapi/tl_collectible_item_type_gen.go +++ b/tdapi/tl_collectible_item_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_commit_pending_paid_message_reactions_gen.go b/tdapi/tl_commit_pending_paid_message_reactions_gen.go index fc7b040a7d..3047dd31d9 100644 --- a/tdapi/tl_commit_pending_paid_message_reactions_gen.go +++ b/tdapi/tl_commit_pending_paid_message_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_confirm_qr_code_authentication_gen.go b/tdapi/tl_confirm_qr_code_authentication_gen.go index 6eb5344828..afb0fa7601 100644 --- a/tdapi/tl_confirm_qr_code_authentication_gen.go +++ b/tdapi/tl_confirm_qr_code_authentication_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_confirm_session_gen.go b/tdapi/tl_confirm_session_gen.go index 85c06d49f8..49823357dc 100644 --- a/tdapi/tl_confirm_session_gen.go +++ b/tdapi/tl_confirm_session_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_connected_website_gen.go b/tdapi/tl_connected_website_gen.go index 5f8207c409..43f0ac78bb 100644 --- a/tdapi/tl_connected_website_gen.go +++ b/tdapi/tl_connected_website_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_connected_websites_gen.go b/tdapi/tl_connected_websites_gen.go index 5f8cb298b0..0fb26a208d 100644 --- a/tdapi/tl_connected_websites_gen.go +++ b/tdapi/tl_connected_websites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_connection_state_gen.go b/tdapi/tl_connection_state_gen.go index 7bd41794ca..8da0851ffd 100644 --- a/tdapi/tl_connection_state_gen.go +++ b/tdapi/tl_connection_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_contact_gen.go b/tdapi/tl_contact_gen.go index 7f32302446..500630a848 100644 --- a/tdapi/tl_contact_gen.go +++ b/tdapi/tl_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_count_gen.go b/tdapi/tl_count_gen.go index 018c0421e4..e4f3a33670 100644 --- a/tdapi/tl_count_gen.go +++ b/tdapi/tl_count_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_countries_gen.go b/tdapi/tl_countries_gen.go index 25b718578a..86c7954c82 100644 --- a/tdapi/tl_countries_gen.go +++ b/tdapi/tl_countries_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_country_info_gen.go b/tdapi/tl_country_info_gen.go index 55c5b5b9ba..0ab44f9279 100644 --- a/tdapi/tl_country_info_gen.go +++ b/tdapi/tl_country_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_basic_group_chat_gen.go b/tdapi/tl_create_basic_group_chat_gen.go index baea73600d..0f5891c507 100644 --- a/tdapi/tl_create_basic_group_chat_gen.go +++ b/tdapi/tl_create_basic_group_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_business_chat_link_gen.go b/tdapi/tl_create_business_chat_link_gen.go index cea779e675..b0b235a6f5 100644 --- a/tdapi/tl_create_business_chat_link_gen.go +++ b/tdapi/tl_create_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_call_gen.go b/tdapi/tl_create_call_gen.go index c9c6f2611c..c38cd08810 100644 --- a/tdapi/tl_create_call_gen.go +++ b/tdapi/tl_create_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_chat_folder_gen.go b/tdapi/tl_create_chat_folder_gen.go index df99242c7c..0cf211d31f 100644 --- a/tdapi/tl_create_chat_folder_gen.go +++ b/tdapi/tl_create_chat_folder_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_chat_folder_invite_link_gen.go b/tdapi/tl_create_chat_folder_invite_link_gen.go index 5c9a937198..0e4b6a94a9 100644 --- a/tdapi/tl_create_chat_folder_invite_link_gen.go +++ b/tdapi/tl_create_chat_folder_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_chat_invite_link_gen.go b/tdapi/tl_create_chat_invite_link_gen.go index 91ff25e2eb..b538db9a95 100644 --- a/tdapi/tl_create_chat_invite_link_gen.go +++ b/tdapi/tl_create_chat_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_chat_subscription_invite_link_gen.go b/tdapi/tl_create_chat_subscription_invite_link_gen.go index 0ef2081a5b..4b80d35830 100644 --- a/tdapi/tl_create_chat_subscription_invite_link_gen.go +++ b/tdapi/tl_create_chat_subscription_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_forum_topic_gen.go b/tdapi/tl_create_forum_topic_gen.go index 19026fe6eb..bf4a07e9c5 100644 --- a/tdapi/tl_create_forum_topic_gen.go +++ b/tdapi/tl_create_forum_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_invoice_link_gen.go b/tdapi/tl_create_invoice_link_gen.go index ae6fab4c46..02b0f113a9 100644 --- a/tdapi/tl_create_invoice_link_gen.go +++ b/tdapi/tl_create_invoice_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_new_basic_group_chat_gen.go b/tdapi/tl_create_new_basic_group_chat_gen.go index 00f53f8ed1..ed0fab624b 100644 --- a/tdapi/tl_create_new_basic_group_chat_gen.go +++ b/tdapi/tl_create_new_basic_group_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_new_secret_chat_gen.go b/tdapi/tl_create_new_secret_chat_gen.go index 20288eb2e5..f499f7f967 100644 --- a/tdapi/tl_create_new_secret_chat_gen.go +++ b/tdapi/tl_create_new_secret_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_new_sticker_set_gen.go b/tdapi/tl_create_new_sticker_set_gen.go index ff55515743..f347e12545 100644 --- a/tdapi/tl_create_new_sticker_set_gen.go +++ b/tdapi/tl_create_new_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_new_supergroup_chat_gen.go b/tdapi/tl_create_new_supergroup_chat_gen.go index 274d458629..9e2b5a48a6 100644 --- a/tdapi/tl_create_new_supergroup_chat_gen.go +++ b/tdapi/tl_create_new_supergroup_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_private_chat_gen.go b/tdapi/tl_create_private_chat_gen.go index 7d1934e804..c82b9be001 100644 --- a/tdapi/tl_create_private_chat_gen.go +++ b/tdapi/tl_create_private_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_secret_chat_gen.go b/tdapi/tl_create_secret_chat_gen.go index 5b0ec61806..c8107c5dc3 100644 --- a/tdapi/tl_create_secret_chat_gen.go +++ b/tdapi/tl_create_secret_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_supergroup_chat_gen.go b/tdapi/tl_create_supergroup_chat_gen.go index 2971541baf..c814488112 100644 --- a/tdapi/tl_create_supergroup_chat_gen.go +++ b/tdapi/tl_create_supergroup_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_temporary_password_gen.go b/tdapi/tl_create_temporary_password_gen.go index 98bd0e6af8..4dada028b7 100644 --- a/tdapi/tl_create_temporary_password_gen.go +++ b/tdapi/tl_create_temporary_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_create_video_chat_gen.go b/tdapi/tl_create_video_chat_gen.go index 5f013b2d1d..7ddc43b228 100644 --- a/tdapi/tl_create_video_chat_gen.go +++ b/tdapi/tl_create_video_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_created_basic_group_chat_gen.go b/tdapi/tl_created_basic_group_chat_gen.go index acce6d6200..937dbac403 100644 --- a/tdapi/tl_created_basic_group_chat_gen.go +++ b/tdapi/tl_created_basic_group_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_current_weather_gen.go b/tdapi/tl_current_weather_gen.go index 78cfa1592d..139916ffa0 100644 --- a/tdapi/tl_current_weather_gen.go +++ b/tdapi/tl_current_weather_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_custom_request_result_gen.go b/tdapi/tl_custom_request_result_gen.go index b8fa83ed7b..0120e64aaf 100644 --- a/tdapi/tl_custom_request_result_gen.go +++ b/tdapi/tl_custom_request_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_database_statistics_gen.go b/tdapi/tl_database_statistics_gen.go index aa69c33a96..48d2622623 100644 --- a/tdapi/tl_database_statistics_gen.go +++ b/tdapi/tl_database_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_date_gen.go b/tdapi/tl_date_gen.go index f17354962f..6fae50fdd7 100644 --- a/tdapi/tl_date_gen.go +++ b/tdapi/tl_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_date_range_gen.go b/tdapi/tl_date_range_gen.go index 4c4b0bf6e8..6a56f77285 100644 --- a/tdapi/tl_date_range_gen.go +++ b/tdapi/tl_date_range_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_dated_file_gen.go b/tdapi/tl_dated_file_gen.go index e5254b5357..fe3d9a71c6 100644 --- a/tdapi/tl_dated_file_gen.go +++ b/tdapi/tl_dated_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_deep_link_info_gen.go b/tdapi/tl_deep_link_info_gen.go index cfb600bad6..bf5fd101f9 100644 --- a/tdapi/tl_deep_link_info_gen.go +++ b/tdapi/tl_deep_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_account_gen.go b/tdapi/tl_delete_account_gen.go index 485d354031..6e208cc96c 100644 --- a/tdapi/tl_delete_account_gen.go +++ b/tdapi/tl_delete_account_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_all_call_messages_gen.go b/tdapi/tl_delete_all_call_messages_gen.go index b790f22a04..f6ad5775ca 100644 --- a/tdapi/tl_delete_all_call_messages_gen.go +++ b/tdapi/tl_delete_all_call_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_all_revoked_chat_invite_links_gen.go b/tdapi/tl_delete_all_revoked_chat_invite_links_gen.go index 5c59055774..76e588bda3 100644 --- a/tdapi/tl_delete_all_revoked_chat_invite_links_gen.go +++ b/tdapi/tl_delete_all_revoked_chat_invite_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_bot_media_previews_gen.go b/tdapi/tl_delete_bot_media_previews_gen.go index 3743a9dedc..dc0b5140db 100644 --- a/tdapi/tl_delete_bot_media_previews_gen.go +++ b/tdapi/tl_delete_bot_media_previews_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_business_chat_link_gen.go b/tdapi/tl_delete_business_chat_link_gen.go index 5cd5d3a1a6..7228eb804d 100644 --- a/tdapi/tl_delete_business_chat_link_gen.go +++ b/tdapi/tl_delete_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_business_connected_bot_gen.go b/tdapi/tl_delete_business_connected_bot_gen.go index 3bdde5af18..7feeec65b9 100644 --- a/tdapi/tl_delete_business_connected_bot_gen.go +++ b/tdapi/tl_delete_business_connected_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_chat_background_gen.go b/tdapi/tl_delete_chat_background_gen.go index 316bf6ca31..de6b7a894a 100644 --- a/tdapi/tl_delete_chat_background_gen.go +++ b/tdapi/tl_delete_chat_background_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_chat_folder_gen.go b/tdapi/tl_delete_chat_folder_gen.go index a4fe29657c..2ecaf3a5a2 100644 --- a/tdapi/tl_delete_chat_folder_gen.go +++ b/tdapi/tl_delete_chat_folder_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_chat_folder_invite_link_gen.go b/tdapi/tl_delete_chat_folder_invite_link_gen.go index 39bda333d1..6aba10c5a2 100644 --- a/tdapi/tl_delete_chat_folder_invite_link_gen.go +++ b/tdapi/tl_delete_chat_folder_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_chat_gen.go b/tdapi/tl_delete_chat_gen.go index 9ffe882153..a1622d76da 100644 --- a/tdapi/tl_delete_chat_gen.go +++ b/tdapi/tl_delete_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_chat_history_gen.go b/tdapi/tl_delete_chat_history_gen.go index 817e6160e0..caabb4c971 100644 --- a/tdapi/tl_delete_chat_history_gen.go +++ b/tdapi/tl_delete_chat_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_chat_messages_by_date_gen.go b/tdapi/tl_delete_chat_messages_by_date_gen.go index dfc9901200..14b8327d21 100644 --- a/tdapi/tl_delete_chat_messages_by_date_gen.go +++ b/tdapi/tl_delete_chat_messages_by_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_chat_messages_by_sender_gen.go b/tdapi/tl_delete_chat_messages_by_sender_gen.go index f6edff3f0b..af7f660195 100644 --- a/tdapi/tl_delete_chat_messages_by_sender_gen.go +++ b/tdapi/tl_delete_chat_messages_by_sender_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_chat_reply_markup_gen.go b/tdapi/tl_delete_chat_reply_markup_gen.go index be3f97e8ba..c4d86e6135 100644 --- a/tdapi/tl_delete_chat_reply_markup_gen.go +++ b/tdapi/tl_delete_chat_reply_markup_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_commands_gen.go b/tdapi/tl_delete_commands_gen.go index d3b3b91fbb..26adde5c0f 100644 --- a/tdapi/tl_delete_commands_gen.go +++ b/tdapi/tl_delete_commands_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_default_background_gen.go b/tdapi/tl_delete_default_background_gen.go index 63c26b154a..d2564f1696 100644 --- a/tdapi/tl_delete_default_background_gen.go +++ b/tdapi/tl_delete_default_background_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_file_gen.go b/tdapi/tl_delete_file_gen.go index 0bebaceb75..77f455af08 100644 --- a/tdapi/tl_delete_file_gen.go +++ b/tdapi/tl_delete_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_forum_topic_gen.go b/tdapi/tl_delete_forum_topic_gen.go index 5ba9e6c123..f19fa03efc 100644 --- a/tdapi/tl_delete_forum_topic_gen.go +++ b/tdapi/tl_delete_forum_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_language_pack_gen.go b/tdapi/tl_delete_language_pack_gen.go index f2a1391014..47dd4c902e 100644 --- a/tdapi/tl_delete_language_pack_gen.go +++ b/tdapi/tl_delete_language_pack_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_messages_gen.go b/tdapi/tl_delete_messages_gen.go index 64e099ddd2..c18bb51bd3 100644 --- a/tdapi/tl_delete_messages_gen.go +++ b/tdapi/tl_delete_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_passport_element_gen.go b/tdapi/tl_delete_passport_element_gen.go index d07a8367d7..b123ed1c87 100644 --- a/tdapi/tl_delete_passport_element_gen.go +++ b/tdapi/tl_delete_passport_element_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_profile_photo_gen.go b/tdapi/tl_delete_profile_photo_gen.go index d7cbcf8988..553a78a50b 100644 --- a/tdapi/tl_delete_profile_photo_gen.go +++ b/tdapi/tl_delete_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_quick_reply_shortcut_gen.go b/tdapi/tl_delete_quick_reply_shortcut_gen.go index 60752c2209..e3df259570 100644 --- a/tdapi/tl_delete_quick_reply_shortcut_gen.go +++ b/tdapi/tl_delete_quick_reply_shortcut_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_quick_reply_shortcut_messages_gen.go b/tdapi/tl_delete_quick_reply_shortcut_messages_gen.go index f858b698e6..028e185e8c 100644 --- a/tdapi/tl_delete_quick_reply_shortcut_messages_gen.go +++ b/tdapi/tl_delete_quick_reply_shortcut_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_revoked_chat_invite_link_gen.go b/tdapi/tl_delete_revoked_chat_invite_link_gen.go index 8bfad0db53..bb03b26601 100644 --- a/tdapi/tl_delete_revoked_chat_invite_link_gen.go +++ b/tdapi/tl_delete_revoked_chat_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_saved_credentials_gen.go b/tdapi/tl_delete_saved_credentials_gen.go index 8908fb7a74..be6b3443cf 100644 --- a/tdapi/tl_delete_saved_credentials_gen.go +++ b/tdapi/tl_delete_saved_credentials_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_saved_messages_topic_history_gen.go b/tdapi/tl_delete_saved_messages_topic_history_gen.go index fcd409f937..17e5f14736 100644 --- a/tdapi/tl_delete_saved_messages_topic_history_gen.go +++ b/tdapi/tl_delete_saved_messages_topic_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_saved_messages_topic_messages_by_date_gen.go b/tdapi/tl_delete_saved_messages_topic_messages_by_date_gen.go index c08cf7922b..dc1eee081e 100644 --- a/tdapi/tl_delete_saved_messages_topic_messages_by_date_gen.go +++ b/tdapi/tl_delete_saved_messages_topic_messages_by_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_saved_order_info_gen.go b/tdapi/tl_delete_saved_order_info_gen.go index 5f53462b39..c909f58509 100644 --- a/tdapi/tl_delete_saved_order_info_gen.go +++ b/tdapi/tl_delete_saved_order_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_sticker_set_gen.go b/tdapi/tl_delete_sticker_set_gen.go index 7d2654fad3..579bb09d36 100644 --- a/tdapi/tl_delete_sticker_set_gen.go +++ b/tdapi/tl_delete_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_delete_story_gen.go b/tdapi/tl_delete_story_gen.go index 00efc5eec3..36b3b48863 100644 --- a/tdapi/tl_delete_story_gen.go +++ b/tdapi/tl_delete_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_destroy_gen.go b/tdapi/tl_destroy_gen.go index fe7da2d765..63fbcb7f6a 100644 --- a/tdapi/tl_destroy_gen.go +++ b/tdapi/tl_destroy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_device_token_gen.go b/tdapi/tl_device_token_gen.go index ea877d961d..346f5e2710 100644 --- a/tdapi/tl_device_token_gen.go +++ b/tdapi/tl_device_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_dice_stickers_gen.go b/tdapi/tl_dice_stickers_gen.go index de82feaa6b..3cb805edee 100644 --- a/tdapi/tl_dice_stickers_gen.go +++ b/tdapi/tl_dice_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_disable_all_supergroup_usernames_gen.go b/tdapi/tl_disable_all_supergroup_usernames_gen.go index f009e67876..6b301cfa0e 100644 --- a/tdapi/tl_disable_all_supergroup_usernames_gen.go +++ b/tdapi/tl_disable_all_supergroup_usernames_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_disable_proxy_gen.go b/tdapi/tl_disable_proxy_gen.go index a8559a3f28..acd68a90ad 100644 --- a/tdapi/tl_disable_proxy_gen.go +++ b/tdapi/tl_disable_proxy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_discard_call_gen.go b/tdapi/tl_discard_call_gen.go index c42f77afb0..4fd2f2e05f 100644 --- a/tdapi/tl_discard_call_gen.go +++ b/tdapi/tl_discard_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_disconnect_all_websites_gen.go b/tdapi/tl_disconnect_all_websites_gen.go index e277137b01..b456078ad0 100644 --- a/tdapi/tl_disconnect_all_websites_gen.go +++ b/tdapi/tl_disconnect_all_websites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_disconnect_website_gen.go b/tdapi/tl_disconnect_website_gen.go index 2dc223c7eb..41bd680d7a 100644 --- a/tdapi/tl_disconnect_website_gen.go +++ b/tdapi/tl_disconnect_website_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_document_gen.go b/tdapi/tl_document_gen.go index cd47637401..c203edabce 100644 --- a/tdapi/tl_document_gen.go +++ b/tdapi/tl_document_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_double_gen.go b/tdapi/tl_double_gen.go index 1f65992e10..84652d6308 100644 --- a/tdapi/tl_double_gen.go +++ b/tdapi/tl_double_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_download_file_gen.go b/tdapi/tl_download_file_gen.go index 992c5ecf00..8859fa8c7b 100644 --- a/tdapi/tl_download_file_gen.go +++ b/tdapi/tl_download_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_downloaded_file_counts_gen.go b/tdapi/tl_downloaded_file_counts_gen.go index 3147695774..9c960be2a8 100644 --- a/tdapi/tl_downloaded_file_counts_gen.go +++ b/tdapi/tl_downloaded_file_counts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_draft_message_gen.go b/tdapi/tl_draft_message_gen.go index f9ddfb24ff..3d0f5f25aa 100644 --- a/tdapi/tl_draft_message_gen.go +++ b/tdapi/tl_draft_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_bot_media_preview_gen.go b/tdapi/tl_edit_bot_media_preview_gen.go index 7ea8cbe0c8..d1b41100b2 100644 --- a/tdapi/tl_edit_bot_media_preview_gen.go +++ b/tdapi/tl_edit_bot_media_preview_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_business_chat_link_gen.go b/tdapi/tl_edit_business_chat_link_gen.go index 1b417843f9..1a639cdfb3 100644 --- a/tdapi/tl_edit_business_chat_link_gen.go +++ b/tdapi/tl_edit_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_business_message_caption_gen.go b/tdapi/tl_edit_business_message_caption_gen.go index 90ebafe849..c2ac66325e 100644 --- a/tdapi/tl_edit_business_message_caption_gen.go +++ b/tdapi/tl_edit_business_message_caption_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_business_message_live_location_gen.go b/tdapi/tl_edit_business_message_live_location_gen.go index 6799c358d5..083230dc27 100644 --- a/tdapi/tl_edit_business_message_live_location_gen.go +++ b/tdapi/tl_edit_business_message_live_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_business_message_media_gen.go b/tdapi/tl_edit_business_message_media_gen.go index 5075e8a53b..483d299509 100644 --- a/tdapi/tl_edit_business_message_media_gen.go +++ b/tdapi/tl_edit_business_message_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_business_message_reply_markup_gen.go b/tdapi/tl_edit_business_message_reply_markup_gen.go index 7dd5112a95..64e0bf9ae4 100644 --- a/tdapi/tl_edit_business_message_reply_markup_gen.go +++ b/tdapi/tl_edit_business_message_reply_markup_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_business_message_text_gen.go b/tdapi/tl_edit_business_message_text_gen.go index 7931db0cfc..cd8729b9c9 100644 --- a/tdapi/tl_edit_business_message_text_gen.go +++ b/tdapi/tl_edit_business_message_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_chat_folder_gen.go b/tdapi/tl_edit_chat_folder_gen.go index d01266f288..b820d02b99 100644 --- a/tdapi/tl_edit_chat_folder_gen.go +++ b/tdapi/tl_edit_chat_folder_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_chat_folder_invite_link_gen.go b/tdapi/tl_edit_chat_folder_invite_link_gen.go index df57bc8f94..eeaecac0eb 100644 --- a/tdapi/tl_edit_chat_folder_invite_link_gen.go +++ b/tdapi/tl_edit_chat_folder_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_chat_invite_link_gen.go b/tdapi/tl_edit_chat_invite_link_gen.go index 5ac648df24..0864b57d93 100644 --- a/tdapi/tl_edit_chat_invite_link_gen.go +++ b/tdapi/tl_edit_chat_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_chat_subscription_invite_link_gen.go b/tdapi/tl_edit_chat_subscription_invite_link_gen.go index 8fd15aee49..541dd1f8d5 100644 --- a/tdapi/tl_edit_chat_subscription_invite_link_gen.go +++ b/tdapi/tl_edit_chat_subscription_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_custom_language_pack_info_gen.go b/tdapi/tl_edit_custom_language_pack_info_gen.go index 81b794acd7..93379fbfb2 100644 --- a/tdapi/tl_edit_custom_language_pack_info_gen.go +++ b/tdapi/tl_edit_custom_language_pack_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_forum_topic_gen.go b/tdapi/tl_edit_forum_topic_gen.go index de3b9b1ad5..f8eebe2ca4 100644 --- a/tdapi/tl_edit_forum_topic_gen.go +++ b/tdapi/tl_edit_forum_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_inline_message_caption_gen.go b/tdapi/tl_edit_inline_message_caption_gen.go index 793a412f6b..702d7e502a 100644 --- a/tdapi/tl_edit_inline_message_caption_gen.go +++ b/tdapi/tl_edit_inline_message_caption_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_inline_message_live_location_gen.go b/tdapi/tl_edit_inline_message_live_location_gen.go index e2344cd8ea..bb058347fe 100644 --- a/tdapi/tl_edit_inline_message_live_location_gen.go +++ b/tdapi/tl_edit_inline_message_live_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_inline_message_media_gen.go b/tdapi/tl_edit_inline_message_media_gen.go index e69b7bfab8..ab3cdededa 100644 --- a/tdapi/tl_edit_inline_message_media_gen.go +++ b/tdapi/tl_edit_inline_message_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_inline_message_reply_markup_gen.go b/tdapi/tl_edit_inline_message_reply_markup_gen.go index 94962bbb2b..121c7a5b9f 100644 --- a/tdapi/tl_edit_inline_message_reply_markup_gen.go +++ b/tdapi/tl_edit_inline_message_reply_markup_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_inline_message_text_gen.go b/tdapi/tl_edit_inline_message_text_gen.go index 19e4095cbb..b5c9eb75fb 100644 --- a/tdapi/tl_edit_inline_message_text_gen.go +++ b/tdapi/tl_edit_inline_message_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_message_caption_gen.go b/tdapi/tl_edit_message_caption_gen.go index dba48cc480..d0555d1492 100644 --- a/tdapi/tl_edit_message_caption_gen.go +++ b/tdapi/tl_edit_message_caption_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_message_live_location_gen.go b/tdapi/tl_edit_message_live_location_gen.go index c6bdc248a4..f601fffa66 100644 --- a/tdapi/tl_edit_message_live_location_gen.go +++ b/tdapi/tl_edit_message_live_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_message_media_gen.go b/tdapi/tl_edit_message_media_gen.go index 8230c73a2a..45689078a7 100644 --- a/tdapi/tl_edit_message_media_gen.go +++ b/tdapi/tl_edit_message_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_message_reply_markup_gen.go b/tdapi/tl_edit_message_reply_markup_gen.go index 519b180822..7c1730124c 100644 --- a/tdapi/tl_edit_message_reply_markup_gen.go +++ b/tdapi/tl_edit_message_reply_markup_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_message_scheduling_state_gen.go b/tdapi/tl_edit_message_scheduling_state_gen.go index 409753634b..d6f30eb0c3 100644 --- a/tdapi/tl_edit_message_scheduling_state_gen.go +++ b/tdapi/tl_edit_message_scheduling_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_message_text_gen.go b/tdapi/tl_edit_message_text_gen.go index c1849d3a48..ac850219eb 100644 --- a/tdapi/tl_edit_message_text_gen.go +++ b/tdapi/tl_edit_message_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_proxy_gen.go b/tdapi/tl_edit_proxy_gen.go index 7624536d57..c6b485f8cb 100644 --- a/tdapi/tl_edit_proxy_gen.go +++ b/tdapi/tl_edit_proxy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_quick_reply_message_gen.go b/tdapi/tl_edit_quick_reply_message_gen.go index 964940c3ff..15153711f4 100644 --- a/tdapi/tl_edit_quick_reply_message_gen.go +++ b/tdapi/tl_edit_quick_reply_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_star_subscription_gen.go b/tdapi/tl_edit_star_subscription_gen.go index 00ba8dee01..354d29d98e 100644 --- a/tdapi/tl_edit_star_subscription_gen.go +++ b/tdapi/tl_edit_star_subscription_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_story_cover_gen.go b/tdapi/tl_edit_story_cover_gen.go index c202784038..0de759045e 100644 --- a/tdapi/tl_edit_story_cover_gen.go +++ b/tdapi/tl_edit_story_cover_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_story_gen.go b/tdapi/tl_edit_story_gen.go index 79bc3a4dfd..ef3cadb19d 100644 --- a/tdapi/tl_edit_story_gen.go +++ b/tdapi/tl_edit_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_edit_user_star_subscription_gen.go b/tdapi/tl_edit_user_star_subscription_gen.go index c4b2eb143d..70bf69734a 100644 --- a/tdapi/tl_edit_user_star_subscription_gen.go +++ b/tdapi/tl_edit_user_star_subscription_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_email_address_authentication_code_info_gen.go b/tdapi/tl_email_address_authentication_code_info_gen.go index 4147f9eb37..ed2dfdd92e 100644 --- a/tdapi/tl_email_address_authentication_code_info_gen.go +++ b/tdapi/tl_email_address_authentication_code_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_email_address_authentication_gen.go b/tdapi/tl_email_address_authentication_gen.go index 343f2a8d9d..06449e3dd6 100644 --- a/tdapi/tl_email_address_authentication_gen.go +++ b/tdapi/tl_email_address_authentication_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_email_address_reset_state_gen.go b/tdapi/tl_email_address_reset_state_gen.go index 530875b09c..ac9832ea5c 100644 --- a/tdapi/tl_email_address_reset_state_gen.go +++ b/tdapi/tl_email_address_reset_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emoji_categories_gen.go b/tdapi/tl_emoji_categories_gen.go index b9e4b301d3..04d30b9c3b 100644 --- a/tdapi/tl_emoji_categories_gen.go +++ b/tdapi/tl_emoji_categories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emoji_category_gen.go b/tdapi/tl_emoji_category_gen.go index 1ecdd3bbdc..bb7f6ba303 100644 --- a/tdapi/tl_emoji_category_gen.go +++ b/tdapi/tl_emoji_category_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emoji_category_source_gen.go b/tdapi/tl_emoji_category_source_gen.go index 23dcc52717..e4bc9844b8 100644 --- a/tdapi/tl_emoji_category_source_gen.go +++ b/tdapi/tl_emoji_category_source_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emoji_category_type_gen.go b/tdapi/tl_emoji_category_type_gen.go index 2510c6ce8d..9ad0d8e1f0 100644 --- a/tdapi/tl_emoji_category_type_gen.go +++ b/tdapi/tl_emoji_category_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emoji_keyword_gen.go b/tdapi/tl_emoji_keyword_gen.go index 2f3cbcc5fa..97ccb62a09 100644 --- a/tdapi/tl_emoji_keyword_gen.go +++ b/tdapi/tl_emoji_keyword_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emoji_keywords_gen.go b/tdapi/tl_emoji_keywords_gen.go index 28547a0576..1d5e49d177 100644 --- a/tdapi/tl_emoji_keywords_gen.go +++ b/tdapi/tl_emoji_keywords_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emoji_reaction_gen.go b/tdapi/tl_emoji_reaction_gen.go index cf3368239f..5fc89aa53b 100644 --- a/tdapi/tl_emoji_reaction_gen.go +++ b/tdapi/tl_emoji_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emoji_status_gen.go b/tdapi/tl_emoji_status_gen.go index cf6e9fcb9f..43bc9ab6de 100644 --- a/tdapi/tl_emoji_status_gen.go +++ b/tdapi/tl_emoji_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emoji_statuses_gen.go b/tdapi/tl_emoji_statuses_gen.go index 6730d51ec0..1869eafe30 100644 --- a/tdapi/tl_emoji_statuses_gen.go +++ b/tdapi/tl_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_emojis_gen.go b/tdapi/tl_emojis_gen.go index 558519d05a..8a05504888 100644 --- a/tdapi/tl_emojis_gen.go +++ b/tdapi/tl_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_enable_proxy_gen.go b/tdapi/tl_enable_proxy_gen.go index 4ff7e18706..d71747e8c9 100644 --- a/tdapi/tl_enable_proxy_gen.go +++ b/tdapi/tl_enable_proxy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_encrypted_credentials_gen.go b/tdapi/tl_encrypted_credentials_gen.go index eb450140c5..8cd2ec68bf 100644 --- a/tdapi/tl_encrypted_credentials_gen.go +++ b/tdapi/tl_encrypted_credentials_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_encrypted_passport_element_gen.go b/tdapi/tl_encrypted_passport_element_gen.go index 848bdd4998..fe929d3f22 100644 --- a/tdapi/tl_encrypted_passport_element_gen.go +++ b/tdapi/tl_encrypted_passport_element_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_end_group_call_gen.go b/tdapi/tl_end_group_call_gen.go index 12a577df5d..ec82cf5365 100644 --- a/tdapi/tl_end_group_call_gen.go +++ b/tdapi/tl_end_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_end_group_call_recording_gen.go b/tdapi/tl_end_group_call_recording_gen.go index e09157e5cf..62d66f7222 100644 --- a/tdapi/tl_end_group_call_recording_gen.go +++ b/tdapi/tl_end_group_call_recording_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_end_group_call_screen_sharing_gen.go b/tdapi/tl_end_group_call_screen_sharing_gen.go index a01787074a..61e69a7972 100644 --- a/tdapi/tl_end_group_call_screen_sharing_gen.go +++ b/tdapi/tl_end_group_call_screen_sharing_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_error_gen.go b/tdapi/tl_error_gen.go index a68fcf6921..cf9a18fdc9 100644 --- a/tdapi/tl_error_gen.go +++ b/tdapi/tl_error_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_fact_check_gen.go b/tdapi/tl_fact_check_gen.go index 27846efd34..1beed6d5e1 100644 --- a/tdapi/tl_fact_check_gen.go +++ b/tdapi/tl_fact_check_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_failed_to_add_member_gen.go b/tdapi/tl_failed_to_add_member_gen.go index fcc0079788..c316b0ab60 100644 --- a/tdapi/tl_failed_to_add_member_gen.go +++ b/tdapi/tl_failed_to_add_member_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_failed_to_add_members_gen.go b/tdapi/tl_failed_to_add_members_gen.go index 31d379dad6..fddfd55440 100644 --- a/tdapi/tl_failed_to_add_members_gen.go +++ b/tdapi/tl_failed_to_add_members_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_file_download_gen.go b/tdapi/tl_file_download_gen.go index c73deb091a..dad620f8e8 100644 --- a/tdapi/tl_file_download_gen.go +++ b/tdapi/tl_file_download_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_file_downloaded_prefix_size_gen.go b/tdapi/tl_file_downloaded_prefix_size_gen.go index 1d86d38110..1b11c0769c 100644 --- a/tdapi/tl_file_downloaded_prefix_size_gen.go +++ b/tdapi/tl_file_downloaded_prefix_size_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_file_gen.go b/tdapi/tl_file_gen.go index 7212d48a6c..b81285aed1 100644 --- a/tdapi/tl_file_gen.go +++ b/tdapi/tl_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_file_part_gen.go b/tdapi/tl_file_part_gen.go index 27d44e5529..f419b64049 100644 --- a/tdapi/tl_file_part_gen.go +++ b/tdapi/tl_file_part_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_file_type_gen.go b/tdapi/tl_file_type_gen.go index a64bce77ca..dd84de3b50 100644 --- a/tdapi/tl_file_type_gen.go +++ b/tdapi/tl_file_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_finish_file_generation_gen.go b/tdapi/tl_finish_file_generation_gen.go index acb10fbe24..86467a5230 100644 --- a/tdapi/tl_finish_file_generation_gen.go +++ b/tdapi/tl_finish_file_generation_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_firebase_authentication_settings_gen.go b/tdapi/tl_firebase_authentication_settings_gen.go index 774c85eb36..bde06250f3 100644 --- a/tdapi/tl_firebase_authentication_settings_gen.go +++ b/tdapi/tl_firebase_authentication_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_firebase_device_verification_parameters_gen.go b/tdapi/tl_firebase_device_verification_parameters_gen.go index a95d070b9b..db9c350b4f 100644 --- a/tdapi/tl_firebase_device_verification_parameters_gen.go +++ b/tdapi/tl_firebase_device_verification_parameters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_formatted_text_gen.go b/tdapi/tl_formatted_text_gen.go index 5d438f84ab..0b74ac3846 100644 --- a/tdapi/tl_formatted_text_gen.go +++ b/tdapi/tl_formatted_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_forum_topic_gen.go b/tdapi/tl_forum_topic_gen.go index 5fdae59bfd..d215e9f322 100644 --- a/tdapi/tl_forum_topic_gen.go +++ b/tdapi/tl_forum_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_forum_topic_icon_gen.go b/tdapi/tl_forum_topic_icon_gen.go index a0e6238bb0..96c27fa753 100644 --- a/tdapi/tl_forum_topic_icon_gen.go +++ b/tdapi/tl_forum_topic_icon_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_forum_topic_info_gen.go b/tdapi/tl_forum_topic_info_gen.go index 6b09c380f7..d30dd7ddf1 100644 --- a/tdapi/tl_forum_topic_info_gen.go +++ b/tdapi/tl_forum_topic_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_forum_topics_gen.go b/tdapi/tl_forum_topics_gen.go index 31fe1075fd..1f8b18f3e0 100644 --- a/tdapi/tl_forum_topics_gen.go +++ b/tdapi/tl_forum_topics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_forward_messages_gen.go b/tdapi/tl_forward_messages_gen.go index 5382ff5956..64a4a4cc13 100644 --- a/tdapi/tl_forward_messages_gen.go +++ b/tdapi/tl_forward_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_forward_source_gen.go b/tdapi/tl_forward_source_gen.go index 463c6fb50d..87ccd0d76a 100644 --- a/tdapi/tl_forward_source_gen.go +++ b/tdapi/tl_forward_source_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_found_chat_boosts_gen.go b/tdapi/tl_found_chat_boosts_gen.go index aaf4790046..5e98c96e76 100644 --- a/tdapi/tl_found_chat_boosts_gen.go +++ b/tdapi/tl_found_chat_boosts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_found_chat_messages_gen.go b/tdapi/tl_found_chat_messages_gen.go index 1eb935ad91..eaeb7bd775 100644 --- a/tdapi/tl_found_chat_messages_gen.go +++ b/tdapi/tl_found_chat_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_found_file_downloads_gen.go b/tdapi/tl_found_file_downloads_gen.go index cd3855f4c4..3a09afb0f1 100644 --- a/tdapi/tl_found_file_downloads_gen.go +++ b/tdapi/tl_found_file_downloads_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_found_messages_gen.go b/tdapi/tl_found_messages_gen.go index 239f820b15..abad46a7e2 100644 --- a/tdapi/tl_found_messages_gen.go +++ b/tdapi/tl_found_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_found_position_gen.go b/tdapi/tl_found_position_gen.go index e03f305512..7fd0fd12e2 100644 --- a/tdapi/tl_found_position_gen.go +++ b/tdapi/tl_found_position_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_found_positions_gen.go b/tdapi/tl_found_positions_gen.go index 7c205493c3..254137da80 100644 --- a/tdapi/tl_found_positions_gen.go +++ b/tdapi/tl_found_positions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_found_stories_gen.go b/tdapi/tl_found_stories_gen.go index da256bc5d5..8d3b372380 100644 --- a/tdapi/tl_found_stories_gen.go +++ b/tdapi/tl_found_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_found_users_gen.go b/tdapi/tl_found_users_gen.go index a8a4544c24..aae075933d 100644 --- a/tdapi/tl_found_users_gen.go +++ b/tdapi/tl_found_users_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_found_web_app_gen.go b/tdapi/tl_found_web_app_gen.go index e2e5f8dd44..5e8a5b1212 100644 --- a/tdapi/tl_found_web_app_gen.go +++ b/tdapi/tl_found_web_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_game_gen.go b/tdapi/tl_game_gen.go index 9c362e6b93..e4525983f8 100644 --- a/tdapi/tl_game_gen.go +++ b/tdapi/tl_game_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_game_high_score_gen.go b/tdapi/tl_game_high_score_gen.go index 45321e8fea..356724f921 100644 --- a/tdapi/tl_game_high_score_gen.go +++ b/tdapi/tl_game_high_score_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_game_high_scores_gen.go b/tdapi/tl_game_high_scores_gen.go index 433b2d44b4..151bbdfe35 100644 --- a/tdapi/tl_game_high_scores_gen.go +++ b/tdapi/tl_game_high_scores_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_account_ttl_gen.go b/tdapi/tl_get_account_ttl_gen.go index 2f8a1ccd04..afb9f02eca 100644 --- a/tdapi/tl_get_account_ttl_gen.go +++ b/tdapi/tl_get_account_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_active_sessions_gen.go b/tdapi/tl_get_active_sessions_gen.go index 26eaecc30b..7774c77684 100644 --- a/tdapi/tl_get_active_sessions_gen.go +++ b/tdapi/tl_get_active_sessions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_all_passport_elements_gen.go b/tdapi/tl_get_all_passport_elements_gen.go index 83d1530f3d..e1e834a402 100644 --- a/tdapi/tl_get_all_passport_elements_gen.go +++ b/tdapi/tl_get_all_passport_elements_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_all_sticker_emojis_gen.go b/tdapi/tl_get_all_sticker_emojis_gen.go index daf28f6223..301b8092f5 100644 --- a/tdapi/tl_get_all_sticker_emojis_gen.go +++ b/tdapi/tl_get_all_sticker_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_animated_emoji_gen.go b/tdapi/tl_get_animated_emoji_gen.go index 00672582ec..48851e17da 100644 --- a/tdapi/tl_get_animated_emoji_gen.go +++ b/tdapi/tl_get_animated_emoji_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_application_config_gen.go b/tdapi/tl_get_application_config_gen.go index bb119da066..a0aea73bc5 100644 --- a/tdapi/tl_get_application_config_gen.go +++ b/tdapi/tl_get_application_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_application_download_link_gen.go b/tdapi/tl_get_application_download_link_gen.go index 7808c8c243..15c1590106 100644 --- a/tdapi/tl_get_application_download_link_gen.go +++ b/tdapi/tl_get_application_download_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_archive_chat_list_settings_gen.go b/tdapi/tl_get_archive_chat_list_settings_gen.go index f769496c94..777ed0d171 100644 --- a/tdapi/tl_get_archive_chat_list_settings_gen.go +++ b/tdapi/tl_get_archive_chat_list_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_archived_sticker_sets_gen.go b/tdapi/tl_get_archived_sticker_sets_gen.go index d2a28d884b..0ea632686a 100644 --- a/tdapi/tl_get_archived_sticker_sets_gen.go +++ b/tdapi/tl_get_archived_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_attached_sticker_sets_gen.go b/tdapi/tl_get_attached_sticker_sets_gen.go index 0f46daf53c..ad03e3723b 100644 --- a/tdapi/tl_get_attached_sticker_sets_gen.go +++ b/tdapi/tl_get_attached_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_attachment_menu_bot_gen.go b/tdapi/tl_get_attachment_menu_bot_gen.go index aa0f2828e4..c5f3df7a31 100644 --- a/tdapi/tl_get_attachment_menu_bot_gen.go +++ b/tdapi/tl_get_attachment_menu_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_authorization_state_gen.go b/tdapi/tl_get_authorization_state_gen.go index 2ad0a70136..8e626a1ca4 100644 --- a/tdapi/tl_get_authorization_state_gen.go +++ b/tdapi/tl_get_authorization_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_auto_download_settings_presets_gen.go b/tdapi/tl_get_auto_download_settings_presets_gen.go index 41caf659bb..213e05ec3a 100644 --- a/tdapi/tl_get_auto_download_settings_presets_gen.go +++ b/tdapi/tl_get_auto_download_settings_presets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_autosave_settings_gen.go b/tdapi/tl_get_autosave_settings_gen.go index f7b0a3b1aa..aa44c43e40 100644 --- a/tdapi/tl_get_autosave_settings_gen.go +++ b/tdapi/tl_get_autosave_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_available_chat_boost_slots_gen.go b/tdapi/tl_get_available_chat_boost_slots_gen.go index e54fd5b9a4..db6be9d15c 100644 --- a/tdapi/tl_get_available_chat_boost_slots_gen.go +++ b/tdapi/tl_get_available_chat_boost_slots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_available_gifts_gen.go b/tdapi/tl_get_available_gifts_gen.go index 7f3cb7422d..264343d1c1 100644 --- a/tdapi/tl_get_available_gifts_gen.go +++ b/tdapi/tl_get_available_gifts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_background_url_gen.go b/tdapi/tl_get_background_url_gen.go index f74cdb53ed..c91e943c6b 100644 --- a/tdapi/tl_get_background_url_gen.go +++ b/tdapi/tl_get_background_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_bank_card_info_gen.go b/tdapi/tl_get_bank_card_info_gen.go index c18dfd25bd..215159d3d8 100644 --- a/tdapi/tl_get_bank_card_info_gen.go +++ b/tdapi/tl_get_bank_card_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_basic_group_full_info_gen.go b/tdapi/tl_get_basic_group_full_info_gen.go index 141b7cf16f..781d22b1fa 100644 --- a/tdapi/tl_get_basic_group_full_info_gen.go +++ b/tdapi/tl_get_basic_group_full_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_basic_group_gen.go b/tdapi/tl_get_basic_group_gen.go index d8b4a73ac9..a32c4b3d59 100644 --- a/tdapi/tl_get_basic_group_gen.go +++ b/tdapi/tl_get_basic_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_blocked_message_senders_gen.go b/tdapi/tl_get_blocked_message_senders_gen.go index df7908e3f4..3edee89fd4 100644 --- a/tdapi/tl_get_blocked_message_senders_gen.go +++ b/tdapi/tl_get_blocked_message_senders_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_bot_info_description_gen.go b/tdapi/tl_get_bot_info_description_gen.go index 5c5a97658a..5b8be88a8a 100644 --- a/tdapi/tl_get_bot_info_description_gen.go +++ b/tdapi/tl_get_bot_info_description_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_bot_info_short_description_gen.go b/tdapi/tl_get_bot_info_short_description_gen.go index e3d4beddaf..1c980d47c7 100644 --- a/tdapi/tl_get_bot_info_short_description_gen.go +++ b/tdapi/tl_get_bot_info_short_description_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_bot_media_preview_info_gen.go b/tdapi/tl_get_bot_media_preview_info_gen.go index 390b4904b1..5d873b755c 100644 --- a/tdapi/tl_get_bot_media_preview_info_gen.go +++ b/tdapi/tl_get_bot_media_preview_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_bot_media_previews_gen.go b/tdapi/tl_get_bot_media_previews_gen.go index 509afb3883..ce8bcafac9 100644 --- a/tdapi/tl_get_bot_media_previews_gen.go +++ b/tdapi/tl_get_bot_media_previews_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_bot_name_gen.go b/tdapi/tl_get_bot_name_gen.go index 78c5033673..23db9939aa 100644 --- a/tdapi/tl_get_bot_name_gen.go +++ b/tdapi/tl_get_bot_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_business_chat_link_info_gen.go b/tdapi/tl_get_business_chat_link_info_gen.go index 86495e02d8..b386ac0020 100644 --- a/tdapi/tl_get_business_chat_link_info_gen.go +++ b/tdapi/tl_get_business_chat_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_business_chat_links_gen.go b/tdapi/tl_get_business_chat_links_gen.go index 8cca570913..e560bbb0bd 100644 --- a/tdapi/tl_get_business_chat_links_gen.go +++ b/tdapi/tl_get_business_chat_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_business_connected_bot_gen.go b/tdapi/tl_get_business_connected_bot_gen.go index f219c98420..567cd80975 100644 --- a/tdapi/tl_get_business_connected_bot_gen.go +++ b/tdapi/tl_get_business_connected_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_business_connection_gen.go b/tdapi/tl_get_business_connection_gen.go index 514982c3c6..b05d73db4c 100644 --- a/tdapi/tl_get_business_connection_gen.go +++ b/tdapi/tl_get_business_connection_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_business_features_gen.go b/tdapi/tl_get_business_features_gen.go index 493fc7b1a0..1a0ee72796 100644 --- a/tdapi/tl_get_business_features_gen.go +++ b/tdapi/tl_get_business_features_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_callback_query_answer_gen.go b/tdapi/tl_get_callback_query_answer_gen.go index d8ce784ba0..e27c36e92f 100644 --- a/tdapi/tl_get_callback_query_answer_gen.go +++ b/tdapi/tl_get_callback_query_answer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_callback_query_message_gen.go b/tdapi/tl_get_callback_query_message_gen.go index e545fcd4a3..182cd459da 100644 --- a/tdapi/tl_get_callback_query_message_gen.go +++ b/tdapi/tl_get_callback_query_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_active_stories_gen.go b/tdapi/tl_get_chat_active_stories_gen.go index 24312b3978..6f771e3d4d 100644 --- a/tdapi/tl_get_chat_active_stories_gen.go +++ b/tdapi/tl_get_chat_active_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_administrators_gen.go b/tdapi/tl_get_chat_administrators_gen.go index 681d3eaa70..9696fd6773 100644 --- a/tdapi/tl_get_chat_administrators_gen.go +++ b/tdapi/tl_get_chat_administrators_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_archived_stories_gen.go b/tdapi/tl_get_chat_archived_stories_gen.go index e28a533b32..7b90ed5898 100644 --- a/tdapi/tl_get_chat_archived_stories_gen.go +++ b/tdapi/tl_get_chat_archived_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_available_message_senders_gen.go b/tdapi/tl_get_chat_available_message_senders_gen.go index f82c4d2206..c37f42319a 100644 --- a/tdapi/tl_get_chat_available_message_senders_gen.go +++ b/tdapi/tl_get_chat_available_message_senders_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_boost_features_gen.go b/tdapi/tl_get_chat_boost_features_gen.go index 29f4e83b40..8af2094955 100644 --- a/tdapi/tl_get_chat_boost_features_gen.go +++ b/tdapi/tl_get_chat_boost_features_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_boost_level_features_gen.go b/tdapi/tl_get_chat_boost_level_features_gen.go index 4854624f21..75b949a3bb 100644 --- a/tdapi/tl_get_chat_boost_level_features_gen.go +++ b/tdapi/tl_get_chat_boost_level_features_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_boost_link_gen.go b/tdapi/tl_get_chat_boost_link_gen.go index 67c5d6b5fb..1112942647 100644 --- a/tdapi/tl_get_chat_boost_link_gen.go +++ b/tdapi/tl_get_chat_boost_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_boost_link_info_gen.go b/tdapi/tl_get_chat_boost_link_info_gen.go index c326f2443d..df82e5dba5 100644 --- a/tdapi/tl_get_chat_boost_link_info_gen.go +++ b/tdapi/tl_get_chat_boost_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_boost_status_gen.go b/tdapi/tl_get_chat_boost_status_gen.go index db0e4037ec..71d8778719 100644 --- a/tdapi/tl_get_chat_boost_status_gen.go +++ b/tdapi/tl_get_chat_boost_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_boosts_gen.go b/tdapi/tl_get_chat_boosts_gen.go index 58c781e2ce..c2c03f097f 100644 --- a/tdapi/tl_get_chat_boosts_gen.go +++ b/tdapi/tl_get_chat_boosts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_event_log_gen.go b/tdapi/tl_get_chat_event_log_gen.go index b536a50354..709b4cbf4d 100644 --- a/tdapi/tl_get_chat_event_log_gen.go +++ b/tdapi/tl_get_chat_event_log_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_folder_chat_count_gen.go b/tdapi/tl_get_chat_folder_chat_count_gen.go index ae4f8808da..4f28e23bb5 100644 --- a/tdapi/tl_get_chat_folder_chat_count_gen.go +++ b/tdapi/tl_get_chat_folder_chat_count_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_folder_chats_to_leave_gen.go b/tdapi/tl_get_chat_folder_chats_to_leave_gen.go index 103a11e037..0598e21cc6 100644 --- a/tdapi/tl_get_chat_folder_chats_to_leave_gen.go +++ b/tdapi/tl_get_chat_folder_chats_to_leave_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_folder_default_icon_name_gen.go b/tdapi/tl_get_chat_folder_default_icon_name_gen.go index 4ab540382d..abbf788208 100644 --- a/tdapi/tl_get_chat_folder_default_icon_name_gen.go +++ b/tdapi/tl_get_chat_folder_default_icon_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_folder_gen.go b/tdapi/tl_get_chat_folder_gen.go index a1d97e963b..9bf69093cc 100644 --- a/tdapi/tl_get_chat_folder_gen.go +++ b/tdapi/tl_get_chat_folder_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_folder_invite_links_gen.go b/tdapi/tl_get_chat_folder_invite_links_gen.go index fbdc5f985f..9a9799b2e5 100644 --- a/tdapi/tl_get_chat_folder_invite_links_gen.go +++ b/tdapi/tl_get_chat_folder_invite_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_folder_new_chats_gen.go b/tdapi/tl_get_chat_folder_new_chats_gen.go index 35abf6b4ea..eab8fd1774 100644 --- a/tdapi/tl_get_chat_folder_new_chats_gen.go +++ b/tdapi/tl_get_chat_folder_new_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_gen.go b/tdapi/tl_get_chat_gen.go index 7476687091..702b651b61 100644 --- a/tdapi/tl_get_chat_gen.go +++ b/tdapi/tl_get_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_history_gen.go b/tdapi/tl_get_chat_history_gen.go index 4a7c6ecd50..a25e2177c8 100644 --- a/tdapi/tl_get_chat_history_gen.go +++ b/tdapi/tl_get_chat_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_invite_link_counts_gen.go b/tdapi/tl_get_chat_invite_link_counts_gen.go index fc87c13b20..56cc4c4904 100644 --- a/tdapi/tl_get_chat_invite_link_counts_gen.go +++ b/tdapi/tl_get_chat_invite_link_counts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_invite_link_gen.go b/tdapi/tl_get_chat_invite_link_gen.go index cd94c08b13..ba558515ac 100644 --- a/tdapi/tl_get_chat_invite_link_gen.go +++ b/tdapi/tl_get_chat_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_invite_link_members_gen.go b/tdapi/tl_get_chat_invite_link_members_gen.go index 4ee2ac6c4b..5cf3fdeb60 100644 --- a/tdapi/tl_get_chat_invite_link_members_gen.go +++ b/tdapi/tl_get_chat_invite_link_members_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_invite_links_gen.go b/tdapi/tl_get_chat_invite_links_gen.go index c111870ae0..bbcc749817 100644 --- a/tdapi/tl_get_chat_invite_links_gen.go +++ b/tdapi/tl_get_chat_invite_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_join_requests_gen.go b/tdapi/tl_get_chat_join_requests_gen.go index da2206454a..c2b2ce82d6 100644 --- a/tdapi/tl_get_chat_join_requests_gen.go +++ b/tdapi/tl_get_chat_join_requests_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_lists_to_add_chat_gen.go b/tdapi/tl_get_chat_lists_to_add_chat_gen.go index d0046ad9f4..6db8de287f 100644 --- a/tdapi/tl_get_chat_lists_to_add_chat_gen.go +++ b/tdapi/tl_get_chat_lists_to_add_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_member_gen.go b/tdapi/tl_get_chat_member_gen.go index 91d9ca7e17..41e446d0f4 100644 --- a/tdapi/tl_get_chat_member_gen.go +++ b/tdapi/tl_get_chat_member_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_message_by_date_gen.go b/tdapi/tl_get_chat_message_by_date_gen.go index 6de7d380a7..4f469d6759 100644 --- a/tdapi/tl_get_chat_message_by_date_gen.go +++ b/tdapi/tl_get_chat_message_by_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_message_calendar_gen.go b/tdapi/tl_get_chat_message_calendar_gen.go index f79cbdedd8..9967c427b5 100644 --- a/tdapi/tl_get_chat_message_calendar_gen.go +++ b/tdapi/tl_get_chat_message_calendar_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_message_count_gen.go b/tdapi/tl_get_chat_message_count_gen.go index 95cfdf2b59..febc731657 100644 --- a/tdapi/tl_get_chat_message_count_gen.go +++ b/tdapi/tl_get_chat_message_count_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_message_position_gen.go b/tdapi/tl_get_chat_message_position_gen.go index f7cc1f9468..de14ca9151 100644 --- a/tdapi/tl_get_chat_message_position_gen.go +++ b/tdapi/tl_get_chat_message_position_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_notification_settings_exceptions_gen.go b/tdapi/tl_get_chat_notification_settings_exceptions_gen.go index dc2e1269ab..1b8d910def 100644 --- a/tdapi/tl_get_chat_notification_settings_exceptions_gen.go +++ b/tdapi/tl_get_chat_notification_settings_exceptions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_pinned_message_gen.go b/tdapi/tl_get_chat_pinned_message_gen.go index 026b51774c..04d8561b16 100644 --- a/tdapi/tl_get_chat_pinned_message_gen.go +++ b/tdapi/tl_get_chat_pinned_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_posted_to_chat_page_stories_gen.go b/tdapi/tl_get_chat_posted_to_chat_page_stories_gen.go index bbef5ad3af..c9ef926ec6 100644 --- a/tdapi/tl_get_chat_posted_to_chat_page_stories_gen.go +++ b/tdapi/tl_get_chat_posted_to_chat_page_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_revenue_statistics_gen.go b/tdapi/tl_get_chat_revenue_statistics_gen.go index 286d287047..d1877e8157 100644 --- a/tdapi/tl_get_chat_revenue_statistics_gen.go +++ b/tdapi/tl_get_chat_revenue_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_revenue_transactions_gen.go b/tdapi/tl_get_chat_revenue_transactions_gen.go index a5a5f7485c..c87d9fb849 100644 --- a/tdapi/tl_get_chat_revenue_transactions_gen.go +++ b/tdapi/tl_get_chat_revenue_transactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_revenue_withdrawal_url_gen.go b/tdapi/tl_get_chat_revenue_withdrawal_url_gen.go index dd8a2fbbcb..f40fcc8dd8 100644 --- a/tdapi/tl_get_chat_revenue_withdrawal_url_gen.go +++ b/tdapi/tl_get_chat_revenue_withdrawal_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_scheduled_messages_gen.go b/tdapi/tl_get_chat_scheduled_messages_gen.go index 4c82d8b9bd..912445c7bb 100644 --- a/tdapi/tl_get_chat_scheduled_messages_gen.go +++ b/tdapi/tl_get_chat_scheduled_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_similar_chat_count_gen.go b/tdapi/tl_get_chat_similar_chat_count_gen.go index 18156fd0a1..b87b190295 100644 --- a/tdapi/tl_get_chat_similar_chat_count_gen.go +++ b/tdapi/tl_get_chat_similar_chat_count_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_similar_chats_gen.go b/tdapi/tl_get_chat_similar_chats_gen.go index 3b1aaa72e6..ab12900712 100644 --- a/tdapi/tl_get_chat_similar_chats_gen.go +++ b/tdapi/tl_get_chat_similar_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_sparse_message_positions_gen.go b/tdapi/tl_get_chat_sparse_message_positions_gen.go index 2747c6d915..493448f000 100644 --- a/tdapi/tl_get_chat_sparse_message_positions_gen.go +++ b/tdapi/tl_get_chat_sparse_message_positions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_sponsored_messages_gen.go b/tdapi/tl_get_chat_sponsored_messages_gen.go index 471fd28a40..2ea4df2ce6 100644 --- a/tdapi/tl_get_chat_sponsored_messages_gen.go +++ b/tdapi/tl_get_chat_sponsored_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_statistics_gen.go b/tdapi/tl_get_chat_statistics_gen.go index 96305dbd3c..7466d34ce1 100644 --- a/tdapi/tl_get_chat_statistics_gen.go +++ b/tdapi/tl_get_chat_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chat_story_interactions_gen.go b/tdapi/tl_get_chat_story_interactions_gen.go index 060c0efed7..fb8c6a96e8 100644 --- a/tdapi/tl_get_chat_story_interactions_gen.go +++ b/tdapi/tl_get_chat_story_interactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chats_for_chat_folder_invite_link_gen.go b/tdapi/tl_get_chats_for_chat_folder_invite_link_gen.go index 6a4cd66ec3..bbe3a1cd1b 100644 --- a/tdapi/tl_get_chats_for_chat_folder_invite_link_gen.go +++ b/tdapi/tl_get_chats_for_chat_folder_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chats_gen.go b/tdapi/tl_get_chats_gen.go index 59302ae3ba..0360da7c0f 100644 --- a/tdapi/tl_get_chats_gen.go +++ b/tdapi/tl_get_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_chats_to_send_stories_gen.go b/tdapi/tl_get_chats_to_send_stories_gen.go index 2f91f9b999..29c051e7d6 100644 --- a/tdapi/tl_get_chats_to_send_stories_gen.go +++ b/tdapi/tl_get_chats_to_send_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_close_friends_gen.go b/tdapi/tl_get_close_friends_gen.go index 7c52d71321..4ed7afd8e7 100644 --- a/tdapi/tl_get_close_friends_gen.go +++ b/tdapi/tl_get_close_friends_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_collectible_item_info_gen.go b/tdapi/tl_get_collectible_item_info_gen.go index 57db4b7c79..8308433d45 100644 --- a/tdapi/tl_get_collectible_item_info_gen.go +++ b/tdapi/tl_get_collectible_item_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_commands_gen.go b/tdapi/tl_get_commands_gen.go index d6ee34664e..0165b3c491 100644 --- a/tdapi/tl_get_commands_gen.go +++ b/tdapi/tl_get_commands_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_connected_websites_gen.go b/tdapi/tl_get_connected_websites_gen.go index 6abecb162d..6bfaaffc8f 100644 --- a/tdapi/tl_get_connected_websites_gen.go +++ b/tdapi/tl_get_connected_websites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_contacts_gen.go b/tdapi/tl_get_contacts_gen.go index b9f0cc4ffe..d2d49ff28d 100644 --- a/tdapi/tl_get_contacts_gen.go +++ b/tdapi/tl_get_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_countries_gen.go b/tdapi/tl_get_countries_gen.go index 80776ef7ed..7867d8f81c 100644 --- a/tdapi/tl_get_countries_gen.go +++ b/tdapi/tl_get_countries_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_country_code_gen.go b/tdapi/tl_get_country_code_gen.go index 1fd3ca4c08..95e1b94c23 100644 --- a/tdapi/tl_get_country_code_gen.go +++ b/tdapi/tl_get_country_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_country_flag_emoji_gen.go b/tdapi/tl_get_country_flag_emoji_gen.go index edab3fb023..56bd44a79d 100644 --- a/tdapi/tl_get_country_flag_emoji_gen.go +++ b/tdapi/tl_get_country_flag_emoji_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_created_public_chats_gen.go b/tdapi/tl_get_created_public_chats_gen.go index ac8ae80782..e7924d78c6 100644 --- a/tdapi/tl_get_created_public_chats_gen.go +++ b/tdapi/tl_get_created_public_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_current_state_gen.go b/tdapi/tl_get_current_state_gen.go index 9c10ae7b6a..b434bec883 100644 --- a/tdapi/tl_get_current_state_gen.go +++ b/tdapi/tl_get_current_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_current_weather_gen.go b/tdapi/tl_get_current_weather_gen.go index 47eef973bb..49087ce232 100644 --- a/tdapi/tl_get_current_weather_gen.go +++ b/tdapi/tl_get_current_weather_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_custom_emoji_reaction_animations_gen.go b/tdapi/tl_get_custom_emoji_reaction_animations_gen.go index 0e480ba608..13144a6ee5 100644 --- a/tdapi/tl_get_custom_emoji_reaction_animations_gen.go +++ b/tdapi/tl_get_custom_emoji_reaction_animations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_custom_emoji_stickers_gen.go b/tdapi/tl_get_custom_emoji_stickers_gen.go index 017996b846..d22126f581 100644 --- a/tdapi/tl_get_custom_emoji_stickers_gen.go +++ b/tdapi/tl_get_custom_emoji_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_database_statistics_gen.go b/tdapi/tl_get_database_statistics_gen.go index 4ecab7a4ff..648ed04c7d 100644 --- a/tdapi/tl_get_database_statistics_gen.go +++ b/tdapi/tl_get_database_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_deep_link_info_gen.go b/tdapi/tl_get_deep_link_info_gen.go index f71a126df1..4d8b3fb3e0 100644 --- a/tdapi/tl_get_deep_link_info_gen.go +++ b/tdapi/tl_get_deep_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_default_background_custom_emoji_stickers_gen.go b/tdapi/tl_get_default_background_custom_emoji_stickers_gen.go index 42c4324b6e..a54717a0a4 100644 --- a/tdapi/tl_get_default_background_custom_emoji_stickers_gen.go +++ b/tdapi/tl_get_default_background_custom_emoji_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_default_chat_emoji_statuses_gen.go b/tdapi/tl_get_default_chat_emoji_statuses_gen.go index 57c31df19b..fb892e82cf 100644 --- a/tdapi/tl_get_default_chat_emoji_statuses_gen.go +++ b/tdapi/tl_get_default_chat_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_default_chat_photo_custom_emoji_stickers_gen.go b/tdapi/tl_get_default_chat_photo_custom_emoji_stickers_gen.go index eadbff83cb..e1ae092c2e 100644 --- a/tdapi/tl_get_default_chat_photo_custom_emoji_stickers_gen.go +++ b/tdapi/tl_get_default_chat_photo_custom_emoji_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_default_emoji_statuses_gen.go b/tdapi/tl_get_default_emoji_statuses_gen.go index e04699ff42..24cbee0944 100644 --- a/tdapi/tl_get_default_emoji_statuses_gen.go +++ b/tdapi/tl_get_default_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_default_message_auto_delete_time_gen.go b/tdapi/tl_get_default_message_auto_delete_time_gen.go index 044f3ab624..a8bc6179a6 100644 --- a/tdapi/tl_get_default_message_auto_delete_time_gen.go +++ b/tdapi/tl_get_default_message_auto_delete_time_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_default_profile_photo_custom_emoji_stickers_gen.go b/tdapi/tl_get_default_profile_photo_custom_emoji_stickers_gen.go index 1e5c174a90..7cd0d65aaf 100644 --- a/tdapi/tl_get_default_profile_photo_custom_emoji_stickers_gen.go +++ b/tdapi/tl_get_default_profile_photo_custom_emoji_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_disallowed_chat_emoji_statuses_gen.go b/tdapi/tl_get_disallowed_chat_emoji_statuses_gen.go index 1c289da2ae..a79efb7f15 100644 --- a/tdapi/tl_get_disallowed_chat_emoji_statuses_gen.go +++ b/tdapi/tl_get_disallowed_chat_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_emoji_categories_gen.go b/tdapi/tl_get_emoji_categories_gen.go index 0ea442a6d4..b8134bdead 100644 --- a/tdapi/tl_get_emoji_categories_gen.go +++ b/tdapi/tl_get_emoji_categories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_emoji_reaction_gen.go b/tdapi/tl_get_emoji_reaction_gen.go index 47706b83e6..b7fdde357a 100644 --- a/tdapi/tl_get_emoji_reaction_gen.go +++ b/tdapi/tl_get_emoji_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_emoji_suggestions_url_gen.go b/tdapi/tl_get_emoji_suggestions_url_gen.go index bcc5cab188..293f250ede 100644 --- a/tdapi/tl_get_emoji_suggestions_url_gen.go +++ b/tdapi/tl_get_emoji_suggestions_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_external_link_gen.go b/tdapi/tl_get_external_link_gen.go index 51b30a03ec..28849e21dc 100644 --- a/tdapi/tl_get_external_link_gen.go +++ b/tdapi/tl_get_external_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_external_link_info_gen.go b/tdapi/tl_get_external_link_info_gen.go index ff4b7cf207..67719f8fd5 100644 --- a/tdapi/tl_get_external_link_info_gen.go +++ b/tdapi/tl_get_external_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_favorite_stickers_gen.go b/tdapi/tl_get_favorite_stickers_gen.go index dc1e939152..3ea67b670d 100644 --- a/tdapi/tl_get_favorite_stickers_gen.go +++ b/tdapi/tl_get_favorite_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_file_downloaded_prefix_size_gen.go b/tdapi/tl_get_file_downloaded_prefix_size_gen.go index 5c24fe20f9..b7c3a221e5 100644 --- a/tdapi/tl_get_file_downloaded_prefix_size_gen.go +++ b/tdapi/tl_get_file_downloaded_prefix_size_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_file_extension_gen.go b/tdapi/tl_get_file_extension_gen.go index 9a08173532..a13456321a 100644 --- a/tdapi/tl_get_file_extension_gen.go +++ b/tdapi/tl_get_file_extension_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_file_gen.go b/tdapi/tl_get_file_gen.go index a7c5a2b879..81318567dd 100644 --- a/tdapi/tl_get_file_gen.go +++ b/tdapi/tl_get_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_file_mime_type_gen.go b/tdapi/tl_get_file_mime_type_gen.go index aebb88248c..6d94de5ea1 100644 --- a/tdapi/tl_get_file_mime_type_gen.go +++ b/tdapi/tl_get_file_mime_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_forum_topic_default_icons_gen.go b/tdapi/tl_get_forum_topic_default_icons_gen.go index f0b736caee..d3363036ff 100644 --- a/tdapi/tl_get_forum_topic_default_icons_gen.go +++ b/tdapi/tl_get_forum_topic_default_icons_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_forum_topic_gen.go b/tdapi/tl_get_forum_topic_gen.go index b2eabe669e..d53a5f30e3 100644 --- a/tdapi/tl_get_forum_topic_gen.go +++ b/tdapi/tl_get_forum_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_forum_topic_link_gen.go b/tdapi/tl_get_forum_topic_link_gen.go index fe26f01909..4e8b6d94ef 100644 --- a/tdapi/tl_get_forum_topic_link_gen.go +++ b/tdapi/tl_get_forum_topic_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_forum_topics_gen.go b/tdapi/tl_get_forum_topics_gen.go index 88fd5fcd48..29a1f3c66f 100644 --- a/tdapi/tl_get_forum_topics_gen.go +++ b/tdapi/tl_get_forum_topics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_game_high_scores_gen.go b/tdapi/tl_get_game_high_scores_gen.go index 964371022a..7dc39a2e56 100644 --- a/tdapi/tl_get_game_high_scores_gen.go +++ b/tdapi/tl_get_game_high_scores_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_giveaway_info_gen.go b/tdapi/tl_get_giveaway_info_gen.go index 7963b24752..ee35b65dd4 100644 --- a/tdapi/tl_get_giveaway_info_gen.go +++ b/tdapi/tl_get_giveaway_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_greeting_stickers_gen.go b/tdapi/tl_get_greeting_stickers_gen.go index fac773d5e3..126a3a8379 100644 --- a/tdapi/tl_get_greeting_stickers_gen.go +++ b/tdapi/tl_get_greeting_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_grossing_web_app_bots_gen.go b/tdapi/tl_get_grossing_web_app_bots_gen.go index aec144d879..216df5dc3f 100644 --- a/tdapi/tl_get_grossing_web_app_bots_gen.go +++ b/tdapi/tl_get_grossing_web_app_bots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_group_call_gen.go b/tdapi/tl_get_group_call_gen.go index a55c8ec5d5..d48cbd0e4a 100644 --- a/tdapi/tl_get_group_call_gen.go +++ b/tdapi/tl_get_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_group_call_invite_link_gen.go b/tdapi/tl_get_group_call_invite_link_gen.go index bd96f380c3..a074904735 100644 --- a/tdapi/tl_get_group_call_invite_link_gen.go +++ b/tdapi/tl_get_group_call_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_group_call_stream_segment_gen.go b/tdapi/tl_get_group_call_stream_segment_gen.go index b0462695bc..50ec960a1c 100644 --- a/tdapi/tl_get_group_call_stream_segment_gen.go +++ b/tdapi/tl_get_group_call_stream_segment_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_group_call_streams_gen.go b/tdapi/tl_get_group_call_streams_gen.go index ffc2665ea6..d6f59299bb 100644 --- a/tdapi/tl_get_group_call_streams_gen.go +++ b/tdapi/tl_get_group_call_streams_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_groups_in_common_gen.go b/tdapi/tl_get_groups_in_common_gen.go index 12a942f83a..631938327e 100644 --- a/tdapi/tl_get_groups_in_common_gen.go +++ b/tdapi/tl_get_groups_in_common_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_imported_contact_count_gen.go b/tdapi/tl_get_imported_contact_count_gen.go index c1d93832d4..c2add65742 100644 --- a/tdapi/tl_get_imported_contact_count_gen.go +++ b/tdapi/tl_get_imported_contact_count_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_inactive_supergroup_chats_gen.go b/tdapi/tl_get_inactive_supergroup_chats_gen.go index 7216abb577..b38e23a022 100644 --- a/tdapi/tl_get_inactive_supergroup_chats_gen.go +++ b/tdapi/tl_get_inactive_supergroup_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_inline_game_high_scores_gen.go b/tdapi/tl_get_inline_game_high_scores_gen.go index b42a0ef126..1fa7c32d54 100644 --- a/tdapi/tl_get_inline_game_high_scores_gen.go +++ b/tdapi/tl_get_inline_game_high_scores_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_inline_query_results_gen.go b/tdapi/tl_get_inline_query_results_gen.go index b3638a0ddd..ad3885523a 100644 --- a/tdapi/tl_get_inline_query_results_gen.go +++ b/tdapi/tl_get_inline_query_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_installed_backgrounds_gen.go b/tdapi/tl_get_installed_backgrounds_gen.go index 4f3420f4ee..0aaa2ffcf1 100644 --- a/tdapi/tl_get_installed_backgrounds_gen.go +++ b/tdapi/tl_get_installed_backgrounds_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_installed_sticker_sets_gen.go b/tdapi/tl_get_installed_sticker_sets_gen.go index a1aa136d1e..f7a432bad5 100644 --- a/tdapi/tl_get_installed_sticker_sets_gen.go +++ b/tdapi/tl_get_installed_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_internal_link_gen.go b/tdapi/tl_get_internal_link_gen.go index 3d6940b62f..c954bf41f2 100644 --- a/tdapi/tl_get_internal_link_gen.go +++ b/tdapi/tl_get_internal_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_internal_link_type_gen.go b/tdapi/tl_get_internal_link_type_gen.go index 6ac3dee8f4..35e72629a0 100644 --- a/tdapi/tl_get_internal_link_type_gen.go +++ b/tdapi/tl_get_internal_link_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_json_string_gen.go b/tdapi/tl_get_json_string_gen.go index df7b3ce9fe..e801c43335 100644 --- a/tdapi/tl_get_json_string_gen.go +++ b/tdapi/tl_get_json_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_json_value_gen.go b/tdapi/tl_get_json_value_gen.go index 45bc6c4802..544b050071 100644 --- a/tdapi/tl_get_json_value_gen.go +++ b/tdapi/tl_get_json_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_keyword_emojis_gen.go b/tdapi/tl_get_keyword_emojis_gen.go index 6d1d742b84..0e0b45ca5f 100644 --- a/tdapi/tl_get_keyword_emojis_gen.go +++ b/tdapi/tl_get_keyword_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_language_pack_info_gen.go b/tdapi/tl_get_language_pack_info_gen.go index 39d62e96cd..7bfa478c24 100644 --- a/tdapi/tl_get_language_pack_info_gen.go +++ b/tdapi/tl_get_language_pack_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_language_pack_string_gen.go b/tdapi/tl_get_language_pack_string_gen.go index ec96c85d5f..4ddf94b472 100644 --- a/tdapi/tl_get_language_pack_string_gen.go +++ b/tdapi/tl_get_language_pack_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_language_pack_strings_gen.go b/tdapi/tl_get_language_pack_strings_gen.go index 45e755ec86..c542c8e8d6 100644 --- a/tdapi/tl_get_language_pack_strings_gen.go +++ b/tdapi/tl_get_language_pack_strings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_link_preview_gen.go b/tdapi/tl_get_link_preview_gen.go index a8b3e0acc0..0acb932b00 100644 --- a/tdapi/tl_get_link_preview_gen.go +++ b/tdapi/tl_get_link_preview_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_localization_target_info_gen.go b/tdapi/tl_get_localization_target_info_gen.go index f88ee2dec5..8e40e4e66b 100644 --- a/tdapi/tl_get_localization_target_info_gen.go +++ b/tdapi/tl_get_localization_target_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_log_stream_gen.go b/tdapi/tl_get_log_stream_gen.go index c2575c3c77..0cc2e45676 100644 --- a/tdapi/tl_get_log_stream_gen.go +++ b/tdapi/tl_get_log_stream_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_log_tag_verbosity_level_gen.go b/tdapi/tl_get_log_tag_verbosity_level_gen.go index 56fb414101..c093d091a1 100644 --- a/tdapi/tl_get_log_tag_verbosity_level_gen.go +++ b/tdapi/tl_get_log_tag_verbosity_level_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_log_tags_gen.go b/tdapi/tl_get_log_tags_gen.go index f9f29bed50..d37d84c657 100644 --- a/tdapi/tl_get_log_tags_gen.go +++ b/tdapi/tl_get_log_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_log_verbosity_level_gen.go b/tdapi/tl_get_log_verbosity_level_gen.go index 71769a68a1..429547a089 100644 --- a/tdapi/tl_get_log_verbosity_level_gen.go +++ b/tdapi/tl_get_log_verbosity_level_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_login_url_gen.go b/tdapi/tl_get_login_url_gen.go index b228e6e506..846d19849e 100644 --- a/tdapi/tl_get_login_url_gen.go +++ b/tdapi/tl_get_login_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_login_url_info_gen.go b/tdapi/tl_get_login_url_info_gen.go index 873ed755c7..0b3318a3a4 100644 --- a/tdapi/tl_get_login_url_info_gen.go +++ b/tdapi/tl_get_login_url_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_main_web_app_gen.go b/tdapi/tl_get_main_web_app_gen.go index ffad35b188..0c833ea052 100644 --- a/tdapi/tl_get_main_web_app_gen.go +++ b/tdapi/tl_get_main_web_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_map_thumbnail_file_gen.go b/tdapi/tl_get_map_thumbnail_file_gen.go index 15feb2de06..ffcd29b964 100644 --- a/tdapi/tl_get_map_thumbnail_file_gen.go +++ b/tdapi/tl_get_map_thumbnail_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_markdown_text_gen.go b/tdapi/tl_get_markdown_text_gen.go index 887111dcda..1d6fa3a407 100644 --- a/tdapi/tl_get_markdown_text_gen.go +++ b/tdapi/tl_get_markdown_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_me_gen.go b/tdapi/tl_get_me_gen.go index dae415c50a..7ee1084ec1 100644 --- a/tdapi/tl_get_me_gen.go +++ b/tdapi/tl_get_me_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_menu_button_gen.go b/tdapi/tl_get_menu_button_gen.go index f641b74445..ebf4cbc961 100644 --- a/tdapi/tl_get_menu_button_gen.go +++ b/tdapi/tl_get_menu_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_added_reactions_gen.go b/tdapi/tl_get_message_added_reactions_gen.go index 649f6970c5..bab629e135 100644 --- a/tdapi/tl_get_message_added_reactions_gen.go +++ b/tdapi/tl_get_message_added_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_available_reactions_gen.go b/tdapi/tl_get_message_available_reactions_gen.go index e49bc27391..3baae9c43e 100644 --- a/tdapi/tl_get_message_available_reactions_gen.go +++ b/tdapi/tl_get_message_available_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_effect_gen.go b/tdapi/tl_get_message_effect_gen.go index cfa11b21bf..5d5539cd61 100644 --- a/tdapi/tl_get_message_effect_gen.go +++ b/tdapi/tl_get_message_effect_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_embedding_code_gen.go b/tdapi/tl_get_message_embedding_code_gen.go index ad16f55f62..b4de035ca4 100644 --- a/tdapi/tl_get_message_embedding_code_gen.go +++ b/tdapi/tl_get_message_embedding_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_file_type_gen.go b/tdapi/tl_get_message_file_type_gen.go index 0d29eb85fd..00aae2fad9 100644 --- a/tdapi/tl_get_message_file_type_gen.go +++ b/tdapi/tl_get_message_file_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_gen.go b/tdapi/tl_get_message_gen.go index f4ea97fe5a..65247d98dc 100644 --- a/tdapi/tl_get_message_gen.go +++ b/tdapi/tl_get_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_import_confirmation_text_gen.go b/tdapi/tl_get_message_import_confirmation_text_gen.go index 047ed1e8c8..3e9c11d479 100644 --- a/tdapi/tl_get_message_import_confirmation_text_gen.go +++ b/tdapi/tl_get_message_import_confirmation_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_link_gen.go b/tdapi/tl_get_message_link_gen.go index b77d242a56..215dfcbda3 100644 --- a/tdapi/tl_get_message_link_gen.go +++ b/tdapi/tl_get_message_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_link_info_gen.go b/tdapi/tl_get_message_link_info_gen.go index 97a9fbeee8..9befa95359 100644 --- a/tdapi/tl_get_message_link_info_gen.go +++ b/tdapi/tl_get_message_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_locally_gen.go b/tdapi/tl_get_message_locally_gen.go index c41863f9e0..0bc4932b13 100644 --- a/tdapi/tl_get_message_locally_gen.go +++ b/tdapi/tl_get_message_locally_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_properties_gen.go b/tdapi/tl_get_message_properties_gen.go index 63af073ccb..0a33bae697 100644 --- a/tdapi/tl_get_message_properties_gen.go +++ b/tdapi/tl_get_message_properties_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_public_forwards_gen.go b/tdapi/tl_get_message_public_forwards_gen.go index ff6f747e58..359b4b4808 100644 --- a/tdapi/tl_get_message_public_forwards_gen.go +++ b/tdapi/tl_get_message_public_forwards_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_read_date_gen.go b/tdapi/tl_get_message_read_date_gen.go index aafbc56532..042f44a320 100644 --- a/tdapi/tl_get_message_read_date_gen.go +++ b/tdapi/tl_get_message_read_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_statistics_gen.go b/tdapi/tl_get_message_statistics_gen.go index 75f1af7527..a5a97dccf0 100644 --- a/tdapi/tl_get_message_statistics_gen.go +++ b/tdapi/tl_get_message_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_thread_gen.go b/tdapi/tl_get_message_thread_gen.go index 00397499c0..4c569a052b 100644 --- a/tdapi/tl_get_message_thread_gen.go +++ b/tdapi/tl_get_message_thread_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_thread_history_gen.go b/tdapi/tl_get_message_thread_history_gen.go index b67d67b417..24871d6e27 100644 --- a/tdapi/tl_get_message_thread_history_gen.go +++ b/tdapi/tl_get_message_thread_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_message_viewers_gen.go b/tdapi/tl_get_message_viewers_gen.go index 56b6caf91b..0beead5d83 100644 --- a/tdapi/tl_get_message_viewers_gen.go +++ b/tdapi/tl_get_message_viewers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_messages_gen.go b/tdapi/tl_get_messages_gen.go index d35b89b2f9..e765f9c550 100644 --- a/tdapi/tl_get_messages_gen.go +++ b/tdapi/tl_get_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_network_statistics_gen.go b/tdapi/tl_get_network_statistics_gen.go index e9b93dd8b3..9a6e62cde7 100644 --- a/tdapi/tl_get_network_statistics_gen.go +++ b/tdapi/tl_get_network_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_new_chat_privacy_settings_gen.go b/tdapi/tl_get_new_chat_privacy_settings_gen.go index 7f889af77d..4ea9524ccd 100644 --- a/tdapi/tl_get_new_chat_privacy_settings_gen.go +++ b/tdapi/tl_get_new_chat_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_option_gen.go b/tdapi/tl_get_option_gen.go index 7b346ed49c..1db61e5e03 100644 --- a/tdapi/tl_get_option_gen.go +++ b/tdapi/tl_get_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_owned_sticker_sets_gen.go b/tdapi/tl_get_owned_sticker_sets_gen.go index 07cbf9abeb..c0a06d1535 100644 --- a/tdapi/tl_get_owned_sticker_sets_gen.go +++ b/tdapi/tl_get_owned_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_passport_authorization_form_available_elements_gen.go b/tdapi/tl_get_passport_authorization_form_available_elements_gen.go index 1c1aa68a63..03bae53176 100644 --- a/tdapi/tl_get_passport_authorization_form_available_elements_gen.go +++ b/tdapi/tl_get_passport_authorization_form_available_elements_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_passport_authorization_form_gen.go b/tdapi/tl_get_passport_authorization_form_gen.go index 4a382fb462..ef5f5ad2b2 100644 --- a/tdapi/tl_get_passport_authorization_form_gen.go +++ b/tdapi/tl_get_passport_authorization_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_passport_element_gen.go b/tdapi/tl_get_passport_element_gen.go index 2e561382e6..db3b0ac2ff 100644 --- a/tdapi/tl_get_passport_element_gen.go +++ b/tdapi/tl_get_passport_element_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_password_state_gen.go b/tdapi/tl_get_password_state_gen.go index 4044da751c..638dbac13b 100644 --- a/tdapi/tl_get_password_state_gen.go +++ b/tdapi/tl_get_password_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_payment_form_gen.go b/tdapi/tl_get_payment_form_gen.go index da567beaee..3778378b6a 100644 --- a/tdapi/tl_get_payment_form_gen.go +++ b/tdapi/tl_get_payment_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_payment_receipt_gen.go b/tdapi/tl_get_payment_receipt_gen.go index 6c8935901d..5c8d78a2fa 100644 --- a/tdapi/tl_get_payment_receipt_gen.go +++ b/tdapi/tl_get_payment_receipt_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_phone_number_info_gen.go b/tdapi/tl_get_phone_number_info_gen.go index d539d26952..6d1b8b72ac 100644 --- a/tdapi/tl_get_phone_number_info_gen.go +++ b/tdapi/tl_get_phone_number_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_phone_number_info_sync_gen.go b/tdapi/tl_get_phone_number_info_sync_gen.go index 08427f09b8..e6684503ee 100644 --- a/tdapi/tl_get_phone_number_info_sync_gen.go +++ b/tdapi/tl_get_phone_number_info_sync_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_poll_voters_gen.go b/tdapi/tl_get_poll_voters_gen.go index 75023ab1cd..6823865369 100644 --- a/tdapi/tl_get_poll_voters_gen.go +++ b/tdapi/tl_get_poll_voters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_preferred_country_language_gen.go b/tdapi/tl_get_preferred_country_language_gen.go index 3c6edead7e..ad5f357513 100644 --- a/tdapi/tl_get_preferred_country_language_gen.go +++ b/tdapi/tl_get_preferred_country_language_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_premium_features_gen.go b/tdapi/tl_get_premium_features_gen.go index 5b51df5d25..17a747fffd 100644 --- a/tdapi/tl_get_premium_features_gen.go +++ b/tdapi/tl_get_premium_features_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_premium_gift_code_payment_options_gen.go b/tdapi/tl_get_premium_gift_code_payment_options_gen.go index 9a1fdb3713..cb59c7744e 100644 --- a/tdapi/tl_get_premium_gift_code_payment_options_gen.go +++ b/tdapi/tl_get_premium_gift_code_payment_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_premium_info_sticker_gen.go b/tdapi/tl_get_premium_info_sticker_gen.go index 0cc436596d..95a37444d1 100644 --- a/tdapi/tl_get_premium_info_sticker_gen.go +++ b/tdapi/tl_get_premium_info_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_premium_limit_gen.go b/tdapi/tl_get_premium_limit_gen.go index 52218d456c..1bb10cf26c 100644 --- a/tdapi/tl_get_premium_limit_gen.go +++ b/tdapi/tl_get_premium_limit_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_premium_state_gen.go b/tdapi/tl_get_premium_state_gen.go index 8d056a8262..6088938a9e 100644 --- a/tdapi/tl_get_premium_state_gen.go +++ b/tdapi/tl_get_premium_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_premium_sticker_examples_gen.go b/tdapi/tl_get_premium_sticker_examples_gen.go index 5df4fdbbf0..fe987fc791 100644 --- a/tdapi/tl_get_premium_sticker_examples_gen.go +++ b/tdapi/tl_get_premium_sticker_examples_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_premium_stickers_gen.go b/tdapi/tl_get_premium_stickers_gen.go index 4bda506f35..a17422c753 100644 --- a/tdapi/tl_get_premium_stickers_gen.go +++ b/tdapi/tl_get_premium_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_prepared_inline_message_gen.go b/tdapi/tl_get_prepared_inline_message_gen.go index b438d25d58..b313677afb 100644 --- a/tdapi/tl_get_prepared_inline_message_gen.go +++ b/tdapi/tl_get_prepared_inline_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_proxies_gen.go b/tdapi/tl_get_proxies_gen.go index bddf084eda..a96ada2cc5 100644 --- a/tdapi/tl_get_proxies_gen.go +++ b/tdapi/tl_get_proxies_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_proxy_link_gen.go b/tdapi/tl_get_proxy_link_gen.go index 3f48eb8065..f42c348af8 100644 --- a/tdapi/tl_get_proxy_link_gen.go +++ b/tdapi/tl_get_proxy_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_push_receiver_id_gen.go b/tdapi/tl_get_push_receiver_id_gen.go index 8a40013516..c6c0747cc9 100644 --- a/tdapi/tl_get_push_receiver_id_gen.go +++ b/tdapi/tl_get_push_receiver_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_read_date_privacy_settings_gen.go b/tdapi/tl_get_read_date_privacy_settings_gen.go index dbf7038f24..0e6ccedd59 100644 --- a/tdapi/tl_get_read_date_privacy_settings_gen.go +++ b/tdapi/tl_get_read_date_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_recent_emoji_statuses_gen.go b/tdapi/tl_get_recent_emoji_statuses_gen.go index 7a41910490..adec6de7f0 100644 --- a/tdapi/tl_get_recent_emoji_statuses_gen.go +++ b/tdapi/tl_get_recent_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_recent_inline_bots_gen.go b/tdapi/tl_get_recent_inline_bots_gen.go index 368fac43de..43681a778c 100644 --- a/tdapi/tl_get_recent_inline_bots_gen.go +++ b/tdapi/tl_get_recent_inline_bots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_recent_stickers_gen.go b/tdapi/tl_get_recent_stickers_gen.go index a3def5cb88..feed92b60d 100644 --- a/tdapi/tl_get_recent_stickers_gen.go +++ b/tdapi/tl_get_recent_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_recently_opened_chats_gen.go b/tdapi/tl_get_recently_opened_chats_gen.go index 677652bef4..488a930538 100644 --- a/tdapi/tl_get_recently_opened_chats_gen.go +++ b/tdapi/tl_get_recently_opened_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_recently_visited_t_me_urls_gen.go b/tdapi/tl_get_recently_visited_t_me_urls_gen.go index 5df25728a8..cf0edd1832 100644 --- a/tdapi/tl_get_recently_visited_t_me_urls_gen.go +++ b/tdapi/tl_get_recently_visited_t_me_urls_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_recommended_chat_folders_gen.go b/tdapi/tl_get_recommended_chat_folders_gen.go index 3a8cea224c..d9bd0f1629 100644 --- a/tdapi/tl_get_recommended_chat_folders_gen.go +++ b/tdapi/tl_get_recommended_chat_folders_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_recommended_chats_gen.go b/tdapi/tl_get_recommended_chats_gen.go index d5ce8ac70d..16ad40803c 100644 --- a/tdapi/tl_get_recommended_chats_gen.go +++ b/tdapi/tl_get_recommended_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_recovery_email_address_gen.go b/tdapi/tl_get_recovery_email_address_gen.go index fc22d96e90..f195e421fa 100644 --- a/tdapi/tl_get_recovery_email_address_gen.go +++ b/tdapi/tl_get_recovery_email_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_remote_file_gen.go b/tdapi/tl_get_remote_file_gen.go index 9e61208918..958f1ad2f8 100644 --- a/tdapi/tl_get_remote_file_gen.go +++ b/tdapi/tl_get_remote_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_replied_message_gen.go b/tdapi/tl_get_replied_message_gen.go index e518d064c7..eb772c9ec6 100644 --- a/tdapi/tl_get_replied_message_gen.go +++ b/tdapi/tl_get_replied_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_saved_animations_gen.go b/tdapi/tl_get_saved_animations_gen.go index b338ba51d7..52092aa067 100644 --- a/tdapi/tl_get_saved_animations_gen.go +++ b/tdapi/tl_get_saved_animations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_saved_messages_tags_gen.go b/tdapi/tl_get_saved_messages_tags_gen.go index b5e191f223..2c8801bd1b 100644 --- a/tdapi/tl_get_saved_messages_tags_gen.go +++ b/tdapi/tl_get_saved_messages_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_saved_messages_topic_history_gen.go b/tdapi/tl_get_saved_messages_topic_history_gen.go index 20a1a2183d..ad18997daf 100644 --- a/tdapi/tl_get_saved_messages_topic_history_gen.go +++ b/tdapi/tl_get_saved_messages_topic_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_saved_messages_topic_message_by_date_gen.go b/tdapi/tl_get_saved_messages_topic_message_by_date_gen.go index de976ec312..493128abc4 100644 --- a/tdapi/tl_get_saved_messages_topic_message_by_date_gen.go +++ b/tdapi/tl_get_saved_messages_topic_message_by_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_saved_notification_sound_gen.go b/tdapi/tl_get_saved_notification_sound_gen.go index 5f09d0e236..315527291c 100644 --- a/tdapi/tl_get_saved_notification_sound_gen.go +++ b/tdapi/tl_get_saved_notification_sound_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_saved_notification_sounds_gen.go b/tdapi/tl_get_saved_notification_sounds_gen.go index 81e2d516a6..68076228fc 100644 --- a/tdapi/tl_get_saved_notification_sounds_gen.go +++ b/tdapi/tl_get_saved_notification_sounds_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_saved_order_info_gen.go b/tdapi/tl_get_saved_order_info_gen.go index 261f039661..274486502d 100644 --- a/tdapi/tl_get_saved_order_info_gen.go +++ b/tdapi/tl_get_saved_order_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_scope_notification_settings_gen.go b/tdapi/tl_get_scope_notification_settings_gen.go index 6a37e2f1c3..8e28181083 100644 --- a/tdapi/tl_get_scope_notification_settings_gen.go +++ b/tdapi/tl_get_scope_notification_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_searched_for_tags_gen.go b/tdapi/tl_get_searched_for_tags_gen.go index 8c91418bd0..e73f35a836 100644 --- a/tdapi/tl_get_searched_for_tags_gen.go +++ b/tdapi/tl_get_searched_for_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_secret_chat_gen.go b/tdapi/tl_get_secret_chat_gen.go index 56a3d8712b..7e0300fdcb 100644 --- a/tdapi/tl_get_secret_chat_gen.go +++ b/tdapi/tl_get_secret_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_star_ad_account_url_gen.go b/tdapi/tl_get_star_ad_account_url_gen.go index 9c32493764..6b588e2f2a 100644 --- a/tdapi/tl_get_star_ad_account_url_gen.go +++ b/tdapi/tl_get_star_ad_account_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_star_gift_payment_options_gen.go b/tdapi/tl_get_star_gift_payment_options_gen.go index 1cf3b9b18b..0274042eae 100644 --- a/tdapi/tl_get_star_gift_payment_options_gen.go +++ b/tdapi/tl_get_star_gift_payment_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_star_giveaway_payment_options_gen.go b/tdapi/tl_get_star_giveaway_payment_options_gen.go index 9f9ef5562a..22a458453a 100644 --- a/tdapi/tl_get_star_giveaway_payment_options_gen.go +++ b/tdapi/tl_get_star_giveaway_payment_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_star_payment_options_gen.go b/tdapi/tl_get_star_payment_options_gen.go index 72f0b0f68f..c66d91566e 100644 --- a/tdapi/tl_get_star_payment_options_gen.go +++ b/tdapi/tl_get_star_payment_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_star_revenue_statistics_gen.go b/tdapi/tl_get_star_revenue_statistics_gen.go index 906ed22096..e30176b0e0 100644 --- a/tdapi/tl_get_star_revenue_statistics_gen.go +++ b/tdapi/tl_get_star_revenue_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_star_subscriptions_gen.go b/tdapi/tl_get_star_subscriptions_gen.go index b693f7bd71..31703dfe2a 100644 --- a/tdapi/tl_get_star_subscriptions_gen.go +++ b/tdapi/tl_get_star_subscriptions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_star_transactions_gen.go b/tdapi/tl_get_star_transactions_gen.go index fde7b47ee3..718e317748 100644 --- a/tdapi/tl_get_star_transactions_gen.go +++ b/tdapi/tl_get_star_transactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_star_withdrawal_url_gen.go b/tdapi/tl_get_star_withdrawal_url_gen.go index fa3e822b2c..aab03b6d13 100644 --- a/tdapi/tl_get_star_withdrawal_url_gen.go +++ b/tdapi/tl_get_star_withdrawal_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_statistical_graph_gen.go b/tdapi/tl_get_statistical_graph_gen.go index 83f0a32716..f6fc3bb5a1 100644 --- a/tdapi/tl_get_statistical_graph_gen.go +++ b/tdapi/tl_get_statistical_graph_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_sticker_emojis_gen.go b/tdapi/tl_get_sticker_emojis_gen.go index 2f32f682b6..cce4f19a32 100644 --- a/tdapi/tl_get_sticker_emojis_gen.go +++ b/tdapi/tl_get_sticker_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_sticker_outline_gen.go b/tdapi/tl_get_sticker_outline_gen.go index f09f65965a..9e11ff9b86 100644 --- a/tdapi/tl_get_sticker_outline_gen.go +++ b/tdapi/tl_get_sticker_outline_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_sticker_set_gen.go b/tdapi/tl_get_sticker_set_gen.go index 68d7442d27..49ec05284b 100644 --- a/tdapi/tl_get_sticker_set_gen.go +++ b/tdapi/tl_get_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_sticker_set_name_gen.go b/tdapi/tl_get_sticker_set_name_gen.go index 674b125a35..04dc1245ce 100644 --- a/tdapi/tl_get_sticker_set_name_gen.go +++ b/tdapi/tl_get_sticker_set_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_stickers_gen.go b/tdapi/tl_get_stickers_gen.go index 4f8da35351..11a6cfe285 100644 --- a/tdapi/tl_get_stickers_gen.go +++ b/tdapi/tl_get_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_storage_statistics_fast_gen.go b/tdapi/tl_get_storage_statistics_fast_gen.go index 041784ec1a..2ff56632ee 100644 --- a/tdapi/tl_get_storage_statistics_fast_gen.go +++ b/tdapi/tl_get_storage_statistics_fast_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_storage_statistics_gen.go b/tdapi/tl_get_storage_statistics_gen.go index ed688ccd88..eacdf56f06 100644 --- a/tdapi/tl_get_storage_statistics_gen.go +++ b/tdapi/tl_get_storage_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_story_available_reactions_gen.go b/tdapi/tl_get_story_available_reactions_gen.go index 57c8d06af6..a7b14fa0aa 100644 --- a/tdapi/tl_get_story_available_reactions_gen.go +++ b/tdapi/tl_get_story_available_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_story_gen.go b/tdapi/tl_get_story_gen.go index b82c835ee7..d1ba1a4ce3 100644 --- a/tdapi/tl_get_story_gen.go +++ b/tdapi/tl_get_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_story_interactions_gen.go b/tdapi/tl_get_story_interactions_gen.go index 8d76c768b2..c1da0f2d2a 100644 --- a/tdapi/tl_get_story_interactions_gen.go +++ b/tdapi/tl_get_story_interactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_story_notification_settings_exceptions_gen.go b/tdapi/tl_get_story_notification_settings_exceptions_gen.go index bb5ab3d898..f350477415 100644 --- a/tdapi/tl_get_story_notification_settings_exceptions_gen.go +++ b/tdapi/tl_get_story_notification_settings_exceptions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_story_public_forwards_gen.go b/tdapi/tl_get_story_public_forwards_gen.go index d482942122..64c3f04712 100644 --- a/tdapi/tl_get_story_public_forwards_gen.go +++ b/tdapi/tl_get_story_public_forwards_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_story_statistics_gen.go b/tdapi/tl_get_story_statistics_gen.go index 0eaae4b0d0..41040a74cc 100644 --- a/tdapi/tl_get_story_statistics_gen.go +++ b/tdapi/tl_get_story_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_suggested_file_name_gen.go b/tdapi/tl_get_suggested_file_name_gen.go index ad02b13460..d0af3babdb 100644 --- a/tdapi/tl_get_suggested_file_name_gen.go +++ b/tdapi/tl_get_suggested_file_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_suggested_sticker_set_name_gen.go b/tdapi/tl_get_suggested_sticker_set_name_gen.go index 228d4bc37d..e8cee7f982 100644 --- a/tdapi/tl_get_suggested_sticker_set_name_gen.go +++ b/tdapi/tl_get_suggested_sticker_set_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_suitable_discussion_chats_gen.go b/tdapi/tl_get_suitable_discussion_chats_gen.go index 5851a7e3db..ef9bbcbcab 100644 --- a/tdapi/tl_get_suitable_discussion_chats_gen.go +++ b/tdapi/tl_get_suitable_discussion_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_suitable_personal_chats_gen.go b/tdapi/tl_get_suitable_personal_chats_gen.go index 2ae2ceff5f..954652b889 100644 --- a/tdapi/tl_get_suitable_personal_chats_gen.go +++ b/tdapi/tl_get_suitable_personal_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_supergroup_full_info_gen.go b/tdapi/tl_get_supergroup_full_info_gen.go index 39e852c1a4..4bfd7ddbf8 100644 --- a/tdapi/tl_get_supergroup_full_info_gen.go +++ b/tdapi/tl_get_supergroup_full_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_supergroup_gen.go b/tdapi/tl_get_supergroup_gen.go index cfcc687aa8..1fffd005df 100644 --- a/tdapi/tl_get_supergroup_gen.go +++ b/tdapi/tl_get_supergroup_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_supergroup_members_gen.go b/tdapi/tl_get_supergroup_members_gen.go index 006d6eb50f..08ae69455c 100644 --- a/tdapi/tl_get_supergroup_members_gen.go +++ b/tdapi/tl_get_supergroup_members_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_support_name_gen.go b/tdapi/tl_get_support_name_gen.go index 5899d99004..0549142ff6 100644 --- a/tdapi/tl_get_support_name_gen.go +++ b/tdapi/tl_get_support_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_support_user_gen.go b/tdapi/tl_get_support_user_gen.go index 22753e71cb..7cce1bc6e9 100644 --- a/tdapi/tl_get_support_user_gen.go +++ b/tdapi/tl_get_support_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_temporary_password_state_gen.go b/tdapi/tl_get_temporary_password_state_gen.go index 0926789c37..4697fb9191 100644 --- a/tdapi/tl_get_temporary_password_state_gen.go +++ b/tdapi/tl_get_temporary_password_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_text_entities_gen.go b/tdapi/tl_get_text_entities_gen.go index 15711affb7..fb246aef07 100644 --- a/tdapi/tl_get_text_entities_gen.go +++ b/tdapi/tl_get_text_entities_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_theme_parameters_json_string_gen.go b/tdapi/tl_get_theme_parameters_json_string_gen.go index b723291408..171a574e28 100644 --- a/tdapi/tl_get_theme_parameters_json_string_gen.go +++ b/tdapi/tl_get_theme_parameters_json_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_themed_chat_emoji_statuses_gen.go b/tdapi/tl_get_themed_chat_emoji_statuses_gen.go index 26a7c073b7..5d7796d382 100644 --- a/tdapi/tl_get_themed_chat_emoji_statuses_gen.go +++ b/tdapi/tl_get_themed_chat_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_themed_emoji_statuses_gen.go b/tdapi/tl_get_themed_emoji_statuses_gen.go index 7e3a277833..b3f1a1a832 100644 --- a/tdapi/tl_get_themed_emoji_statuses_gen.go +++ b/tdapi/tl_get_themed_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_time_zones_gen.go b/tdapi/tl_get_time_zones_gen.go index e8b0b69c00..ff2b35256c 100644 --- a/tdapi/tl_get_time_zones_gen.go +++ b/tdapi/tl_get_time_zones_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_top_chats_gen.go b/tdapi/tl_get_top_chats_gen.go index 3a3961d6c3..4ee997c263 100644 --- a/tdapi/tl_get_top_chats_gen.go +++ b/tdapi/tl_get_top_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_trending_sticker_sets_gen.go b/tdapi/tl_get_trending_sticker_sets_gen.go index 5a5e57d08f..e68a4125ac 100644 --- a/tdapi/tl_get_trending_sticker_sets_gen.go +++ b/tdapi/tl_get_trending_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_user_chat_boosts_gen.go b/tdapi/tl_get_user_chat_boosts_gen.go index 78bc69f536..0213e01965 100644 --- a/tdapi/tl_get_user_chat_boosts_gen.go +++ b/tdapi/tl_get_user_chat_boosts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_user_full_info_gen.go b/tdapi/tl_get_user_full_info_gen.go index 2175b22e86..3a6e4951b4 100644 --- a/tdapi/tl_get_user_full_info_gen.go +++ b/tdapi/tl_get_user_full_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_user_gen.go b/tdapi/tl_get_user_gen.go index 9788573008..91f159f096 100644 --- a/tdapi/tl_get_user_gen.go +++ b/tdapi/tl_get_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_user_gifts_gen.go b/tdapi/tl_get_user_gifts_gen.go index b779d91589..94307034e3 100644 --- a/tdapi/tl_get_user_gifts_gen.go +++ b/tdapi/tl_get_user_gifts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_user_link_gen.go b/tdapi/tl_get_user_link_gen.go index 9d29c4f419..ee2f424d3c 100644 --- a/tdapi/tl_get_user_link_gen.go +++ b/tdapi/tl_get_user_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_user_privacy_setting_rules_gen.go b/tdapi/tl_get_user_privacy_setting_rules_gen.go index 3eaef14c52..14c42892a4 100644 --- a/tdapi/tl_get_user_privacy_setting_rules_gen.go +++ b/tdapi/tl_get_user_privacy_setting_rules_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_user_profile_photos_gen.go b/tdapi/tl_get_user_profile_photos_gen.go index 1705612fe4..4611cac985 100644 --- a/tdapi/tl_get_user_profile_photos_gen.go +++ b/tdapi/tl_get_user_profile_photos_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_user_support_info_gen.go b/tdapi/tl_get_user_support_info_gen.go index 51169c5a4e..e0f46ad669 100644 --- a/tdapi/tl_get_user_support_info_gen.go +++ b/tdapi/tl_get_user_support_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_video_chat_available_participants_gen.go b/tdapi/tl_get_video_chat_available_participants_gen.go index edb2a19cd3..abf698ba20 100644 --- a/tdapi/tl_get_video_chat_available_participants_gen.go +++ b/tdapi/tl_get_video_chat_available_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_video_chat_rtmp_url_gen.go b/tdapi/tl_get_video_chat_rtmp_url_gen.go index 2d4af2dedf..bfad7f878a 100644 --- a/tdapi/tl_get_video_chat_rtmp_url_gen.go +++ b/tdapi/tl_get_video_chat_rtmp_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_web_app_link_url_gen.go b/tdapi/tl_get_web_app_link_url_gen.go index 56891cb9cc..50eec512cd 100644 --- a/tdapi/tl_get_web_app_link_url_gen.go +++ b/tdapi/tl_get_web_app_link_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_web_app_placeholder_gen.go b/tdapi/tl_get_web_app_placeholder_gen.go index e6af091e13..c891431320 100644 --- a/tdapi/tl_get_web_app_placeholder_gen.go +++ b/tdapi/tl_get_web_app_placeholder_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_web_app_url_gen.go b/tdapi/tl_get_web_app_url_gen.go index 72f4980cde..c46114de25 100644 --- a/tdapi/tl_get_web_app_url_gen.go +++ b/tdapi/tl_get_web_app_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_get_web_page_instant_view_gen.go b/tdapi/tl_get_web_page_instant_view_gen.go index f0b95215ce..bdcd6f4299 100644 --- a/tdapi/tl_get_web_page_instant_view_gen.go +++ b/tdapi/tl_get_web_page_instant_view_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_gift_gen.go b/tdapi/tl_gift_gen.go index a6f4d7b91e..41d3212d3b 100644 --- a/tdapi/tl_gift_gen.go +++ b/tdapi/tl_gift_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_gifts_gen.go b/tdapi/tl_gifts_gen.go index 04bc3ab4b5..750f159670 100644 --- a/tdapi/tl_gifts_gen.go +++ b/tdapi/tl_gifts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_giveaway_info_gen.go b/tdapi/tl_giveaway_info_gen.go index 111db14314..72faa8c816 100644 --- a/tdapi/tl_giveaway_info_gen.go +++ b/tdapi/tl_giveaway_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_giveaway_parameters_gen.go b/tdapi/tl_giveaway_parameters_gen.go index dbe0462edb..720bb4a045 100644 --- a/tdapi/tl_giveaway_parameters_gen.go +++ b/tdapi/tl_giveaway_parameters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_giveaway_participant_status_gen.go b/tdapi/tl_giveaway_participant_status_gen.go index ca6eefdf25..a320bd11dc 100644 --- a/tdapi/tl_giveaway_participant_status_gen.go +++ b/tdapi/tl_giveaway_participant_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_giveaway_prize_gen.go b/tdapi/tl_giveaway_prize_gen.go index 383db8fb0d..777546f4f8 100644 --- a/tdapi/tl_giveaway_prize_gen.go +++ b/tdapi/tl_giveaway_prize_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_group_call_gen.go b/tdapi/tl_group_call_gen.go index b75b930a1f..dafcc02a49 100644 --- a/tdapi/tl_group_call_gen.go +++ b/tdapi/tl_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_group_call_id_gen.go b/tdapi/tl_group_call_id_gen.go index 8ec98c6b8c..51922cd209 100644 --- a/tdapi/tl_group_call_id_gen.go +++ b/tdapi/tl_group_call_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_group_call_participant_gen.go b/tdapi/tl_group_call_participant_gen.go index 2570ba14ac..6a9ff8a6cd 100644 --- a/tdapi/tl_group_call_participant_gen.go +++ b/tdapi/tl_group_call_participant_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_group_call_participant_video_info_gen.go b/tdapi/tl_group_call_participant_video_info_gen.go index 9dc6857f73..0a34d480e7 100644 --- a/tdapi/tl_group_call_participant_video_info_gen.go +++ b/tdapi/tl_group_call_participant_video_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_group_call_recent_speaker_gen.go b/tdapi/tl_group_call_recent_speaker_gen.go index ab7aed64b5..cb260fe378 100644 --- a/tdapi/tl_group_call_recent_speaker_gen.go +++ b/tdapi/tl_group_call_recent_speaker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_group_call_stream_gen.go b/tdapi/tl_group_call_stream_gen.go index af4365f5dd..65dc59c0a0 100644 --- a/tdapi/tl_group_call_stream_gen.go +++ b/tdapi/tl_group_call_stream_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_group_call_streams_gen.go b/tdapi/tl_group_call_streams_gen.go index 90b2fe2dc3..52c412b715 100644 --- a/tdapi/tl_group_call_streams_gen.go +++ b/tdapi/tl_group_call_streams_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_group_call_video_quality_gen.go b/tdapi/tl_group_call_video_quality_gen.go index 10b52e6ae6..c6e670a9f2 100644 --- a/tdapi/tl_group_call_video_quality_gen.go +++ b/tdapi/tl_group_call_video_quality_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_group_call_video_source_group_gen.go b/tdapi/tl_group_call_video_source_group_gen.go index 75162d641d..51a4a1ade7 100644 --- a/tdapi/tl_group_call_video_source_group_gen.go +++ b/tdapi/tl_group_call_video_source_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_hashtags_gen.go b/tdapi/tl_hashtags_gen.go index d99c9e9b57..3377ea343c 100644 --- a/tdapi/tl_hashtags_gen.go +++ b/tdapi/tl_hashtags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_hide_contact_close_birthdays_gen.go b/tdapi/tl_hide_contact_close_birthdays_gen.go index 9cc98cff02..9197fcc1ba 100644 --- a/tdapi/tl_hide_contact_close_birthdays_gen.go +++ b/tdapi/tl_hide_contact_close_birthdays_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_hide_suggested_action_gen.go b/tdapi/tl_hide_suggested_action_gen.go index 8286a0ea4d..85ffae9aec 100644 --- a/tdapi/tl_hide_suggested_action_gen.go +++ b/tdapi/tl_hide_suggested_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_http_url_gen.go b/tdapi/tl_http_url_gen.go index 60b832f6dd..694a64efc6 100644 --- a/tdapi/tl_http_url_gen.go +++ b/tdapi/tl_http_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_identity_document_gen.go b/tdapi/tl_identity_document_gen.go index 09504118d4..71012ea450 100644 --- a/tdapi/tl_identity_document_gen.go +++ b/tdapi/tl_identity_document_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_import_contacts_gen.go b/tdapi/tl_import_contacts_gen.go index 44cad7d176..720642e1e2 100644 --- a/tdapi/tl_import_contacts_gen.go +++ b/tdapi/tl_import_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_import_messages_gen.go b/tdapi/tl_import_messages_gen.go index e11d3311e2..caf5e35374 100644 --- a/tdapi/tl_import_messages_gen.go +++ b/tdapi/tl_import_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_imported_contacts_gen.go b/tdapi/tl_imported_contacts_gen.go index d9fe18eb7e..6e3c7c3d1a 100644 --- a/tdapi/tl_imported_contacts_gen.go +++ b/tdapi/tl_imported_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_inline_keyboard_button_gen.go b/tdapi/tl_inline_keyboard_button_gen.go index 15d2cad75a..f1f39a6a05 100644 --- a/tdapi/tl_inline_keyboard_button_gen.go +++ b/tdapi/tl_inline_keyboard_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_inline_keyboard_button_type_gen.go b/tdapi/tl_inline_keyboard_button_type_gen.go index b9b40fb341..a86512b7ef 100644 --- a/tdapi/tl_inline_keyboard_button_type_gen.go +++ b/tdapi/tl_inline_keyboard_button_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_inline_query_result_gen.go b/tdapi/tl_inline_query_result_gen.go index 6baa5659da..e59e80f391 100644 --- a/tdapi/tl_inline_query_result_gen.go +++ b/tdapi/tl_inline_query_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_inline_query_results_button_gen.go b/tdapi/tl_inline_query_results_button_gen.go index e114c5283c..94d31030cb 100644 --- a/tdapi/tl_inline_query_results_button_gen.go +++ b/tdapi/tl_inline_query_results_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_inline_query_results_button_type_gen.go b/tdapi/tl_inline_query_results_button_type_gen.go index d71bc33b83..c85f073bec 100644 --- a/tdapi/tl_inline_query_results_button_type_gen.go +++ b/tdapi/tl_inline_query_results_button_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_inline_query_results_gen.go b/tdapi/tl_inline_query_results_gen.go index 7d3eee6810..e1066cb2c0 100644 --- a/tdapi/tl_inline_query_results_gen.go +++ b/tdapi/tl_inline_query_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_background_gen.go b/tdapi/tl_input_background_gen.go index 53868989f5..3419de02f3 100644 --- a/tdapi/tl_input_background_gen.go +++ b/tdapi/tl_input_background_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_business_chat_link_gen.go b/tdapi/tl_input_business_chat_link_gen.go index fd5e5758ad..4d0594b2d8 100644 --- a/tdapi/tl_input_business_chat_link_gen.go +++ b/tdapi/tl_input_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_business_start_page_gen.go b/tdapi/tl_input_business_start_page_gen.go index ddaac1fb3d..9969d20b0f 100644 --- a/tdapi/tl_input_business_start_page_gen.go +++ b/tdapi/tl_input_business_start_page_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_chat_photo_gen.go b/tdapi/tl_input_chat_photo_gen.go index 222af0a8fd..77bac2fde7 100644 --- a/tdapi/tl_input_chat_photo_gen.go +++ b/tdapi/tl_input_chat_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_credentials_gen.go b/tdapi/tl_input_credentials_gen.go index adf0f43881..73f3cf1ce8 100644 --- a/tdapi/tl_input_credentials_gen.go +++ b/tdapi/tl_input_credentials_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_file_gen.go b/tdapi/tl_input_file_gen.go index 32708398d8..1053429b08 100644 --- a/tdapi/tl_input_file_gen.go +++ b/tdapi/tl_input_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_identity_document_gen.go b/tdapi/tl_input_identity_document_gen.go index 77d4b0a72f..9d5cb28569 100644 --- a/tdapi/tl_input_identity_document_gen.go +++ b/tdapi/tl_input_identity_document_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_inline_query_result_gen.go b/tdapi/tl_input_inline_query_result_gen.go index 3a7d2e6da6..668e0a8105 100644 --- a/tdapi/tl_input_inline_query_result_gen.go +++ b/tdapi/tl_input_inline_query_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_invoice_gen.go b/tdapi/tl_input_invoice_gen.go index 7f12d4e3f4..5ff67b2cf5 100644 --- a/tdapi/tl_input_invoice_gen.go +++ b/tdapi/tl_input_invoice_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_message_content_gen.go b/tdapi/tl_input_message_content_gen.go index 49b6e01b81..3c9a074146 100644 --- a/tdapi/tl_input_message_content_gen.go +++ b/tdapi/tl_input_message_content_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_message_reply_to_gen.go b/tdapi/tl_input_message_reply_to_gen.go index b239d56bfa..161139af6e 100644 --- a/tdapi/tl_input_message_reply_to_gen.go +++ b/tdapi/tl_input_message_reply_to_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_paid_media_gen.go b/tdapi/tl_input_paid_media_gen.go index b09b40c476..e16f72d1fa 100644 --- a/tdapi/tl_input_paid_media_gen.go +++ b/tdapi/tl_input_paid_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_paid_media_type_gen.go b/tdapi/tl_input_paid_media_type_gen.go index 7f5060b1ea..631422f1ff 100644 --- a/tdapi/tl_input_paid_media_type_gen.go +++ b/tdapi/tl_input_paid_media_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_passport_element_error_gen.go b/tdapi/tl_input_passport_element_error_gen.go index 0fb592da4e..542af3fd7f 100644 --- a/tdapi/tl_input_passport_element_error_gen.go +++ b/tdapi/tl_input_passport_element_error_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_passport_element_error_source_gen.go b/tdapi/tl_input_passport_element_error_source_gen.go index 931c6d0ec7..8bc75c023a 100644 --- a/tdapi/tl_input_passport_element_error_source_gen.go +++ b/tdapi/tl_input_passport_element_error_source_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_passport_element_gen.go b/tdapi/tl_input_passport_element_gen.go index e1c1a2f21b..8cbf9c3a4b 100644 --- a/tdapi/tl_input_passport_element_gen.go +++ b/tdapi/tl_input_passport_element_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_personal_document_gen.go b/tdapi/tl_input_personal_document_gen.go index 1c08412075..07e31d0faf 100644 --- a/tdapi/tl_input_personal_document_gen.go +++ b/tdapi/tl_input_personal_document_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_sticker_gen.go b/tdapi/tl_input_sticker_gen.go index ddf49f5467..69e0b0b597 100644 --- a/tdapi/tl_input_sticker_gen.go +++ b/tdapi/tl_input_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_story_area_gen.go b/tdapi/tl_input_story_area_gen.go index da3d57e744..172385fbba 100644 --- a/tdapi/tl_input_story_area_gen.go +++ b/tdapi/tl_input_story_area_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_story_area_type_gen.go b/tdapi/tl_input_story_area_type_gen.go index 506140a555..0d0195433b 100644 --- a/tdapi/tl_input_story_area_type_gen.go +++ b/tdapi/tl_input_story_area_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_story_areas_gen.go b/tdapi/tl_input_story_areas_gen.go index aac6bcab82..b3b70d3ba2 100644 --- a/tdapi/tl_input_story_areas_gen.go +++ b/tdapi/tl_input_story_areas_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_story_content_gen.go b/tdapi/tl_input_story_content_gen.go index 8cf9f85b44..8d588f2794 100644 --- a/tdapi/tl_input_story_content_gen.go +++ b/tdapi/tl_input_story_content_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_text_quote_gen.go b/tdapi/tl_input_text_quote_gen.go index 109b32dcee..3c03617d93 100644 --- a/tdapi/tl_input_text_quote_gen.go +++ b/tdapi/tl_input_text_quote_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_input_thumbnail_gen.go b/tdapi/tl_input_thumbnail_gen.go index ff564dd163..f611b2adcb 100644 --- a/tdapi/tl_input_thumbnail_gen.go +++ b/tdapi/tl_input_thumbnail_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_int32_gen.go b/tdapi/tl_int32_gen.go index 2cab9725d3..52438ffe7e 100644 --- a/tdapi/tl_int32_gen.go +++ b/tdapi/tl_int32_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_int53_gen.go b/tdapi/tl_int53_gen.go index e83b646f76..4fa384cca5 100644 --- a/tdapi/tl_int53_gen.go +++ b/tdapi/tl_int53_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_int64_gen.go b/tdapi/tl_int64_gen.go index 1a04c1b9a9..418561fd13 100644 --- a/tdapi/tl_int64_gen.go +++ b/tdapi/tl_int64_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_internal_link_type_gen.go b/tdapi/tl_internal_link_type_gen.go index b4502d9791..cbc3f96e28 100644 --- a/tdapi/tl_internal_link_type_gen.go +++ b/tdapi/tl_internal_link_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_invite_group_call_participants_gen.go b/tdapi/tl_invite_group_call_participants_gen.go index 62e9459e30..8544d80810 100644 --- a/tdapi/tl_invite_group_call_participants_gen.go +++ b/tdapi/tl_invite_group_call_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_invite_link_chat_type_gen.go b/tdapi/tl_invite_link_chat_type_gen.go index ae5583ea82..e9f982ac85 100644 --- a/tdapi/tl_invite_link_chat_type_gen.go +++ b/tdapi/tl_invite_link_chat_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_invoice_gen.go b/tdapi/tl_invoice_gen.go index b79853f408..9b3e9cd7a5 100644 --- a/tdapi/tl_invoice_gen.go +++ b/tdapi/tl_invoice_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_join_chat_by_invite_link_gen.go b/tdapi/tl_join_chat_by_invite_link_gen.go index 3200303fad..9f3d4222b5 100644 --- a/tdapi/tl_join_chat_by_invite_link_gen.go +++ b/tdapi/tl_join_chat_by_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_join_chat_gen.go b/tdapi/tl_join_chat_gen.go index 55564ccb25..eebc0cddba 100644 --- a/tdapi/tl_join_chat_gen.go +++ b/tdapi/tl_join_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_join_group_call_gen.go b/tdapi/tl_join_group_call_gen.go index ed2c368f72..e05b2103d1 100644 --- a/tdapi/tl_join_group_call_gen.go +++ b/tdapi/tl_join_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_json_object_member_gen.go b/tdapi/tl_json_object_member_gen.go index f52bab5881..d07bfec38b 100644 --- a/tdapi/tl_json_object_member_gen.go +++ b/tdapi/tl_json_object_member_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_json_value_gen.go b/tdapi/tl_json_value_gen.go index 66d21957af..8a55741c3d 100644 --- a/tdapi/tl_json_value_gen.go +++ b/tdapi/tl_json_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_keyboard_button_gen.go b/tdapi/tl_keyboard_button_gen.go index 20660169ed..e9b4b9ef12 100644 --- a/tdapi/tl_keyboard_button_gen.go +++ b/tdapi/tl_keyboard_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_keyboard_button_type_gen.go b/tdapi/tl_keyboard_button_type_gen.go index 2a9552490e..73e338f17e 100644 --- a/tdapi/tl_keyboard_button_type_gen.go +++ b/tdapi/tl_keyboard_button_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_labeled_price_part_gen.go b/tdapi/tl_labeled_price_part_gen.go index 22cf7387fb..9d7146ac8f 100644 --- a/tdapi/tl_labeled_price_part_gen.go +++ b/tdapi/tl_labeled_price_part_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_language_pack_info_gen.go b/tdapi/tl_language_pack_info_gen.go index a9a9b1fe0d..74546014a2 100644 --- a/tdapi/tl_language_pack_info_gen.go +++ b/tdapi/tl_language_pack_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_language_pack_string_gen.go b/tdapi/tl_language_pack_string_gen.go index a5897df35e..1cab6d61da 100644 --- a/tdapi/tl_language_pack_string_gen.go +++ b/tdapi/tl_language_pack_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_language_pack_string_value_gen.go b/tdapi/tl_language_pack_string_value_gen.go index 954378cbb5..cd1803766c 100644 --- a/tdapi/tl_language_pack_string_value_gen.go +++ b/tdapi/tl_language_pack_string_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_language_pack_strings_gen.go b/tdapi/tl_language_pack_strings_gen.go index 0006c62686..531914f0a1 100644 --- a/tdapi/tl_language_pack_strings_gen.go +++ b/tdapi/tl_language_pack_strings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_launch_prepaid_giveaway_gen.go b/tdapi/tl_launch_prepaid_giveaway_gen.go index 692f04bc36..49a1b595c5 100644 --- a/tdapi/tl_launch_prepaid_giveaway_gen.go +++ b/tdapi/tl_launch_prepaid_giveaway_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_leave_chat_gen.go b/tdapi/tl_leave_chat_gen.go index 04e668520f..80afb071fc 100644 --- a/tdapi/tl_leave_chat_gen.go +++ b/tdapi/tl_leave_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_leave_group_call_gen.go b/tdapi/tl_leave_group_call_gen.go index 75da1a5bfd..4bdb451428 100644 --- a/tdapi/tl_leave_group_call_gen.go +++ b/tdapi/tl_leave_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_link_preview_album_media_gen.go b/tdapi/tl_link_preview_album_media_gen.go index fa9f28bc7e..89a8234aa5 100644 --- a/tdapi/tl_link_preview_album_media_gen.go +++ b/tdapi/tl_link_preview_album_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_link_preview_gen.go b/tdapi/tl_link_preview_gen.go index 5e7e15878f..77d7f4c141 100644 --- a/tdapi/tl_link_preview_gen.go +++ b/tdapi/tl_link_preview_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_link_preview_options_gen.go b/tdapi/tl_link_preview_options_gen.go index 205a3211fa..f21a296933 100644 --- a/tdapi/tl_link_preview_options_gen.go +++ b/tdapi/tl_link_preview_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_link_preview_type_gen.go b/tdapi/tl_link_preview_type_gen.go index ecf14a0bec..9fb17322b5 100644 --- a/tdapi/tl_link_preview_type_gen.go +++ b/tdapi/tl_link_preview_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_load_active_stories_gen.go b/tdapi/tl_load_active_stories_gen.go index 369953b4e1..0149023723 100644 --- a/tdapi/tl_load_active_stories_gen.go +++ b/tdapi/tl_load_active_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_load_chats_gen.go b/tdapi/tl_load_chats_gen.go index ccb0406955..ebe8015953 100644 --- a/tdapi/tl_load_chats_gen.go +++ b/tdapi/tl_load_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_load_group_call_participants_gen.go b/tdapi/tl_load_group_call_participants_gen.go index 175e8a5b2d..0953975d69 100644 --- a/tdapi/tl_load_group_call_participants_gen.go +++ b/tdapi/tl_load_group_call_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_load_quick_reply_shortcut_messages_gen.go b/tdapi/tl_load_quick_reply_shortcut_messages_gen.go index 2a61a12cf8..ee7576ca46 100644 --- a/tdapi/tl_load_quick_reply_shortcut_messages_gen.go +++ b/tdapi/tl_load_quick_reply_shortcut_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_load_quick_reply_shortcuts_gen.go b/tdapi/tl_load_quick_reply_shortcuts_gen.go index 231de0cea5..d4dce3234b 100644 --- a/tdapi/tl_load_quick_reply_shortcuts_gen.go +++ b/tdapi/tl_load_quick_reply_shortcuts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_load_saved_messages_topics_gen.go b/tdapi/tl_load_saved_messages_topics_gen.go index 245e3fd61e..f52bb8888f 100644 --- a/tdapi/tl_load_saved_messages_topics_gen.go +++ b/tdapi/tl_load_saved_messages_topics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_local_file_gen.go b/tdapi/tl_local_file_gen.go index 42f197ae7c..d504877829 100644 --- a/tdapi/tl_local_file_gen.go +++ b/tdapi/tl_local_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_localization_target_info_gen.go b/tdapi/tl_localization_target_info_gen.go index 38b1558592..b72f4c9467 100644 --- a/tdapi/tl_localization_target_info_gen.go +++ b/tdapi/tl_localization_target_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_location_address_gen.go b/tdapi/tl_location_address_gen.go index c7ed4ac6b0..6eef04d4a0 100644 --- a/tdapi/tl_location_address_gen.go +++ b/tdapi/tl_location_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_location_gen.go b/tdapi/tl_location_gen.go index cbae2f7828..1e058ee216 100644 --- a/tdapi/tl_location_gen.go +++ b/tdapi/tl_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_log_out_gen.go b/tdapi/tl_log_out_gen.go index a194c21d70..25aa8efd10 100644 --- a/tdapi/tl_log_out_gen.go +++ b/tdapi/tl_log_out_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_log_stream_gen.go b/tdapi/tl_log_stream_gen.go index 833a954d75..09b0ee2f08 100644 --- a/tdapi/tl_log_stream_gen.go +++ b/tdapi/tl_log_stream_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_log_tags_gen.go b/tdapi/tl_log_tags_gen.go index 4c42b73431..096565cd6f 100644 --- a/tdapi/tl_log_tags_gen.go +++ b/tdapi/tl_log_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_log_verbosity_level_gen.go b/tdapi/tl_log_verbosity_level_gen.go index cd7b021afd..29cb115c8c 100644 --- a/tdapi/tl_log_verbosity_level_gen.go +++ b/tdapi/tl_log_verbosity_level_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_login_url_info_gen.go b/tdapi/tl_login_url_info_gen.go index 5f17fa9155..42121e7ffd 100644 --- a/tdapi/tl_login_url_info_gen.go +++ b/tdapi/tl_login_url_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_main_web_app_gen.go b/tdapi/tl_main_web_app_gen.go index 414a737a57..45d1f65e55 100644 --- a/tdapi/tl_main_web_app_gen.go +++ b/tdapi/tl_main_web_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_mask_point_gen.go b/tdapi/tl_mask_point_gen.go index 3d5839abef..c888fea84b 100644 --- a/tdapi/tl_mask_point_gen.go +++ b/tdapi/tl_mask_point_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_mask_position_gen.go b/tdapi/tl_mask_position_gen.go index 02518a7a0b..b51fe9bbd0 100644 --- a/tdapi/tl_mask_position_gen.go +++ b/tdapi/tl_mask_position_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_auto_delete_time_gen.go b/tdapi/tl_message_auto_delete_time_gen.go index 923bb70d6b..bf27e09710 100644 --- a/tdapi/tl_message_auto_delete_time_gen.go +++ b/tdapi/tl_message_auto_delete_time_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_calendar_day_gen.go b/tdapi/tl_message_calendar_day_gen.go index 117ac3e742..840894c394 100644 --- a/tdapi/tl_message_calendar_day_gen.go +++ b/tdapi/tl_message_calendar_day_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_calendar_gen.go b/tdapi/tl_message_calendar_gen.go index 21bdedd125..1a626abeb4 100644 --- a/tdapi/tl_message_calendar_gen.go +++ b/tdapi/tl_message_calendar_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_content_gen.go b/tdapi/tl_message_content_gen.go index e7e8d17fa1..a3d16c8ae1 100644 --- a/tdapi/tl_message_content_gen.go +++ b/tdapi/tl_message_content_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_copy_options_gen.go b/tdapi/tl_message_copy_options_gen.go index 12456318ac..edd1679bbd 100644 --- a/tdapi/tl_message_copy_options_gen.go +++ b/tdapi/tl_message_copy_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_effect_gen.go b/tdapi/tl_message_effect_gen.go index 6f6196a442..0be8ff4874 100644 --- a/tdapi/tl_message_effect_gen.go +++ b/tdapi/tl_message_effect_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_effect_type_gen.go b/tdapi/tl_message_effect_type_gen.go index 458cdc65ba..53ebc64f10 100644 --- a/tdapi/tl_message_effect_type_gen.go +++ b/tdapi/tl_message_effect_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_file_type_gen.go b/tdapi/tl_message_file_type_gen.go index 4183b5045b..8d11baa310 100644 --- a/tdapi/tl_message_file_type_gen.go +++ b/tdapi/tl_message_file_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_forward_info_gen.go b/tdapi/tl_message_forward_info_gen.go index d54ab48533..38ccb59fa2 100644 --- a/tdapi/tl_message_forward_info_gen.go +++ b/tdapi/tl_message_forward_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_gen.go b/tdapi/tl_message_gen.go index 908e24b22a..f5fd647c96 100644 --- a/tdapi/tl_message_gen.go +++ b/tdapi/tl_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_import_info_gen.go b/tdapi/tl_message_import_info_gen.go index 250c877843..ab93b50cc1 100644 --- a/tdapi/tl_message_import_info_gen.go +++ b/tdapi/tl_message_import_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_interaction_info_gen.go b/tdapi/tl_message_interaction_info_gen.go index 5afe73d1b0..d4a93e967b 100644 --- a/tdapi/tl_message_interaction_info_gen.go +++ b/tdapi/tl_message_interaction_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_link_gen.go b/tdapi/tl_message_link_gen.go index c57a245f3f..c8aeaa0bd6 100644 --- a/tdapi/tl_message_link_gen.go +++ b/tdapi/tl_message_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_link_info_gen.go b/tdapi/tl_message_link_info_gen.go index 49f96c075d..da40ca05e8 100644 --- a/tdapi/tl_message_link_info_gen.go +++ b/tdapi/tl_message_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_origin_gen.go b/tdapi/tl_message_origin_gen.go index 47421d6f96..55986160f2 100644 --- a/tdapi/tl_message_origin_gen.go +++ b/tdapi/tl_message_origin_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_position_gen.go b/tdapi/tl_message_position_gen.go index bac291baa7..8f984d1fe6 100644 --- a/tdapi/tl_message_position_gen.go +++ b/tdapi/tl_message_position_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_positions_gen.go b/tdapi/tl_message_positions_gen.go index 1de4962250..8477b1ee0a 100644 --- a/tdapi/tl_message_positions_gen.go +++ b/tdapi/tl_message_positions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_properties_gen.go b/tdapi/tl_message_properties_gen.go index ff46ed1ce8..3a2099f38e 100644 --- a/tdapi/tl_message_properties_gen.go +++ b/tdapi/tl_message_properties_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_reaction_gen.go b/tdapi/tl_message_reaction_gen.go index a6eacb32c2..49a1f7c534 100644 --- a/tdapi/tl_message_reaction_gen.go +++ b/tdapi/tl_message_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_reactions_gen.go b/tdapi/tl_message_reactions_gen.go index 810cd2cd72..d0a6584bca 100644 --- a/tdapi/tl_message_reactions_gen.go +++ b/tdapi/tl_message_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_read_date_gen.go b/tdapi/tl_message_read_date_gen.go index 8a283a366c..614d0ad5b8 100644 --- a/tdapi/tl_message_read_date_gen.go +++ b/tdapi/tl_message_read_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_reply_info_gen.go b/tdapi/tl_message_reply_info_gen.go index 0920e1b871..39ccb98e01 100644 --- a/tdapi/tl_message_reply_info_gen.go +++ b/tdapi/tl_message_reply_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_reply_to_gen.go b/tdapi/tl_message_reply_to_gen.go index 2409a715e3..d17de4d802 100644 --- a/tdapi/tl_message_reply_to_gen.go +++ b/tdapi/tl_message_reply_to_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_scheduling_state_gen.go b/tdapi/tl_message_scheduling_state_gen.go index 2ee02423e1..001392e762 100644 --- a/tdapi/tl_message_scheduling_state_gen.go +++ b/tdapi/tl_message_scheduling_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_self_destruct_type_gen.go b/tdapi/tl_message_self_destruct_type_gen.go index 4fe53a5ff0..80fd577733 100644 --- a/tdapi/tl_message_self_destruct_type_gen.go +++ b/tdapi/tl_message_self_destruct_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_send_options_gen.go b/tdapi/tl_message_send_options_gen.go index a32f74f435..ea4c725738 100644 --- a/tdapi/tl_message_send_options_gen.go +++ b/tdapi/tl_message_send_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_sender_gen.go b/tdapi/tl_message_sender_gen.go index 479ffe8384..fd5170d468 100644 --- a/tdapi/tl_message_sender_gen.go +++ b/tdapi/tl_message_sender_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_senders_gen.go b/tdapi/tl_message_senders_gen.go index 10ee55cd12..1e4c6438a7 100644 --- a/tdapi/tl_message_senders_gen.go +++ b/tdapi/tl_message_senders_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_sending_state_gen.go b/tdapi/tl_message_sending_state_gen.go index 2c79a62738..b22f8ae03c 100644 --- a/tdapi/tl_message_sending_state_gen.go +++ b/tdapi/tl_message_sending_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_source_gen.go b/tdapi/tl_message_source_gen.go index a33bbed974..515e5fb19b 100644 --- a/tdapi/tl_message_source_gen.go +++ b/tdapi/tl_message_source_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_sponsor_gen.go b/tdapi/tl_message_sponsor_gen.go index 6390aa9f58..d6680fe78b 100644 --- a/tdapi/tl_message_sponsor_gen.go +++ b/tdapi/tl_message_sponsor_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_statistics_gen.go b/tdapi/tl_message_statistics_gen.go index 965ec38a41..6b74d8d099 100644 --- a/tdapi/tl_message_statistics_gen.go +++ b/tdapi/tl_message_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_thread_info_gen.go b/tdapi/tl_message_thread_info_gen.go index 4612a2ea3b..7293c97dcc 100644 --- a/tdapi/tl_message_thread_info_gen.go +++ b/tdapi/tl_message_thread_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_viewer_gen.go b/tdapi/tl_message_viewer_gen.go index 593d73d1ea..535415fd90 100644 --- a/tdapi/tl_message_viewer_gen.go +++ b/tdapi/tl_message_viewer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_message_viewers_gen.go b/tdapi/tl_message_viewers_gen.go index 1322d2c8e2..aed544e0de 100644 --- a/tdapi/tl_message_viewers_gen.go +++ b/tdapi/tl_message_viewers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_messages_gen.go b/tdapi/tl_messages_gen.go index 9a66eb3783..e1b19e815e 100644 --- a/tdapi/tl_messages_gen.go +++ b/tdapi/tl_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_minithumbnail_gen.go b/tdapi/tl_minithumbnail_gen.go index 80ae0ecfd5..e971304da4 100644 --- a/tdapi/tl_minithumbnail_gen.go +++ b/tdapi/tl_minithumbnail_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_network_statistics_entry_gen.go b/tdapi/tl_network_statistics_entry_gen.go index 9d2b761ef5..f1f83801d5 100644 --- a/tdapi/tl_network_statistics_entry_gen.go +++ b/tdapi/tl_network_statistics_entry_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_network_statistics_gen.go b/tdapi/tl_network_statistics_gen.go index a500063592..82ad43d328 100644 --- a/tdapi/tl_network_statistics_gen.go +++ b/tdapi/tl_network_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_network_type_gen.go b/tdapi/tl_network_type_gen.go index a5697fa9f3..529816742a 100644 --- a/tdapi/tl_network_type_gen.go +++ b/tdapi/tl_network_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_new_chat_privacy_settings_gen.go b/tdapi/tl_new_chat_privacy_settings_gen.go index 3e9deb38f0..5d70b7fe7b 100644 --- a/tdapi/tl_new_chat_privacy_settings_gen.go +++ b/tdapi/tl_new_chat_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_notification_gen.go b/tdapi/tl_notification_gen.go index bf908ff3d4..e2f7c064dd 100644 --- a/tdapi/tl_notification_gen.go +++ b/tdapi/tl_notification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_notification_group_gen.go b/tdapi/tl_notification_group_gen.go index 79ff9c37a5..5f32a25fa2 100644 --- a/tdapi/tl_notification_group_gen.go +++ b/tdapi/tl_notification_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_notification_group_type_gen.go b/tdapi/tl_notification_group_type_gen.go index dec6810f12..5d3967d541 100644 --- a/tdapi/tl_notification_group_type_gen.go +++ b/tdapi/tl_notification_group_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_notification_settings_scope_gen.go b/tdapi/tl_notification_settings_scope_gen.go index f591e2786c..d63cb2c9e5 100644 --- a/tdapi/tl_notification_settings_scope_gen.go +++ b/tdapi/tl_notification_settings_scope_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_notification_sound_gen.go b/tdapi/tl_notification_sound_gen.go index 984213350e..febf6142b8 100644 --- a/tdapi/tl_notification_sound_gen.go +++ b/tdapi/tl_notification_sound_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_notification_sounds_gen.go b/tdapi/tl_notification_sounds_gen.go index bf498632f7..3d9426f7f7 100644 --- a/tdapi/tl_notification_sounds_gen.go +++ b/tdapi/tl_notification_sounds_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_notification_type_gen.go b/tdapi/tl_notification_type_gen.go index 71bcd059cc..652b5b823e 100644 --- a/tdapi/tl_notification_type_gen.go +++ b/tdapi/tl_notification_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_ok_gen.go b/tdapi/tl_ok_gen.go index ed72ea68f5..965ef35649 100644 --- a/tdapi/tl_ok_gen.go +++ b/tdapi/tl_ok_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_open_chat_gen.go b/tdapi/tl_open_chat_gen.go index dce8d93663..44bb205b4b 100644 --- a/tdapi/tl_open_chat_gen.go +++ b/tdapi/tl_open_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_open_chat_similar_chat_gen.go b/tdapi/tl_open_chat_similar_chat_gen.go index 38f8e9c4e4..4cc3737d69 100644 --- a/tdapi/tl_open_chat_similar_chat_gen.go +++ b/tdapi/tl_open_chat_similar_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_open_message_content_gen.go b/tdapi/tl_open_message_content_gen.go index fd68a69bd2..22d83c04be 100644 --- a/tdapi/tl_open_message_content_gen.go +++ b/tdapi/tl_open_message_content_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_open_story_gen.go b/tdapi/tl_open_story_gen.go index 511ceae7d8..3354fa1cef 100644 --- a/tdapi/tl_open_story_gen.go +++ b/tdapi/tl_open_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_open_web_app_gen.go b/tdapi/tl_open_web_app_gen.go index f69b6d308c..27101f637b 100644 --- a/tdapi/tl_open_web_app_gen.go +++ b/tdapi/tl_open_web_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_optimize_storage_gen.go b/tdapi/tl_optimize_storage_gen.go index dac9d5263e..93baa93bb4 100644 --- a/tdapi/tl_optimize_storage_gen.go +++ b/tdapi/tl_optimize_storage_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_option_value_gen.go b/tdapi/tl_option_value_gen.go index 997caaf7dd..9b9bc68c63 100644 --- a/tdapi/tl_option_value_gen.go +++ b/tdapi/tl_option_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_order_info_gen.go b/tdapi/tl_order_info_gen.go index 3ce99894b4..587dc012ec 100644 --- a/tdapi/tl_order_info_gen.go +++ b/tdapi/tl_order_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_outline_gen.go b/tdapi/tl_outline_gen.go index 81fd8e2605..13a33cda11 100644 --- a/tdapi/tl_outline_gen.go +++ b/tdapi/tl_outline_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_page_block_caption_gen.go b/tdapi/tl_page_block_caption_gen.go index 29739e3459..2fc84b3a45 100644 --- a/tdapi/tl_page_block_caption_gen.go +++ b/tdapi/tl_page_block_caption_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_page_block_gen.go b/tdapi/tl_page_block_gen.go index 22d60d66c4..e6ad7ca3b4 100644 --- a/tdapi/tl_page_block_gen.go +++ b/tdapi/tl_page_block_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_page_block_horizontal_alignment_gen.go b/tdapi/tl_page_block_horizontal_alignment_gen.go index 81cddfa0f8..aa0273c1bc 100644 --- a/tdapi/tl_page_block_horizontal_alignment_gen.go +++ b/tdapi/tl_page_block_horizontal_alignment_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_page_block_list_item_gen.go b/tdapi/tl_page_block_list_item_gen.go index a98603de3f..e291f3dcde 100644 --- a/tdapi/tl_page_block_list_item_gen.go +++ b/tdapi/tl_page_block_list_item_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_page_block_related_article_gen.go b/tdapi/tl_page_block_related_article_gen.go index 7bc01b5b3c..bb6d414c4a 100644 --- a/tdapi/tl_page_block_related_article_gen.go +++ b/tdapi/tl_page_block_related_article_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_page_block_table_cell_gen.go b/tdapi/tl_page_block_table_cell_gen.go index dcb4137993..8c13c968ad 100644 --- a/tdapi/tl_page_block_table_cell_gen.go +++ b/tdapi/tl_page_block_table_cell_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_page_block_vertical_alignment_gen.go b/tdapi/tl_page_block_vertical_alignment_gen.go index e8d6473c0f..2b52338b84 100644 --- a/tdapi/tl_page_block_vertical_alignment_gen.go +++ b/tdapi/tl_page_block_vertical_alignment_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_paid_media_gen.go b/tdapi/tl_paid_media_gen.go index 5e1ab31680..a6cbbc6214 100644 --- a/tdapi/tl_paid_media_gen.go +++ b/tdapi/tl_paid_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_paid_reactor_gen.go b/tdapi/tl_paid_reactor_gen.go index af9396d422..3a16ea9204 100644 --- a/tdapi/tl_paid_reactor_gen.go +++ b/tdapi/tl_paid_reactor_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_parse_markdown_gen.go b/tdapi/tl_parse_markdown_gen.go index 96d4fdad04..8e56ff9557 100644 --- a/tdapi/tl_parse_markdown_gen.go +++ b/tdapi/tl_parse_markdown_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_parse_text_entities_gen.go b/tdapi/tl_parse_text_entities_gen.go index 9b8905c75b..fabd38181a 100644 --- a/tdapi/tl_parse_text_entities_gen.go +++ b/tdapi/tl_parse_text_entities_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_passport_authorization_form_gen.go b/tdapi/tl_passport_authorization_form_gen.go index 8023a638f1..4c3e6111fc 100644 --- a/tdapi/tl_passport_authorization_form_gen.go +++ b/tdapi/tl_passport_authorization_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_passport_element_error_gen.go b/tdapi/tl_passport_element_error_gen.go index df0ebde86d..97ab0d885c 100644 --- a/tdapi/tl_passport_element_error_gen.go +++ b/tdapi/tl_passport_element_error_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_passport_element_error_source_gen.go b/tdapi/tl_passport_element_error_source_gen.go index b4de6bd118..145cb1ae7e 100644 --- a/tdapi/tl_passport_element_error_source_gen.go +++ b/tdapi/tl_passport_element_error_source_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_passport_element_gen.go b/tdapi/tl_passport_element_gen.go index c8a0170c70..97de4bc1a0 100644 --- a/tdapi/tl_passport_element_gen.go +++ b/tdapi/tl_passport_element_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_passport_element_type_gen.go b/tdapi/tl_passport_element_type_gen.go index 96fda00c2f..40aa105560 100644 --- a/tdapi/tl_passport_element_type_gen.go +++ b/tdapi/tl_passport_element_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_passport_elements_gen.go b/tdapi/tl_passport_elements_gen.go index f5c72c11d9..80eed2868a 100644 --- a/tdapi/tl_passport_elements_gen.go +++ b/tdapi/tl_passport_elements_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_passport_elements_with_errors_gen.go b/tdapi/tl_passport_elements_with_errors_gen.go index e851fbd83b..1def09b747 100644 --- a/tdapi/tl_passport_elements_with_errors_gen.go +++ b/tdapi/tl_passport_elements_with_errors_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_passport_required_element_gen.go b/tdapi/tl_passport_required_element_gen.go index ae78f2b219..3b582cce8e 100644 --- a/tdapi/tl_passport_required_element_gen.go +++ b/tdapi/tl_passport_required_element_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_passport_suitable_element_gen.go b/tdapi/tl_passport_suitable_element_gen.go index c51ce9ee0a..52e62f3d8a 100644 --- a/tdapi/tl_passport_suitable_element_gen.go +++ b/tdapi/tl_passport_suitable_element_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_password_state_gen.go b/tdapi/tl_password_state_gen.go index 9e1deec67c..34991b91ec 100644 --- a/tdapi/tl_password_state_gen.go +++ b/tdapi/tl_password_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_payment_form_gen.go b/tdapi/tl_payment_form_gen.go index 1e92e1771a..7c06c0b8a0 100644 --- a/tdapi/tl_payment_form_gen.go +++ b/tdapi/tl_payment_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_payment_form_type_gen.go b/tdapi/tl_payment_form_type_gen.go index 49cf65b23e..9955813210 100644 --- a/tdapi/tl_payment_form_type_gen.go +++ b/tdapi/tl_payment_form_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_payment_option_gen.go b/tdapi/tl_payment_option_gen.go index 26b6ed9942..aa68bbc7fd 100644 --- a/tdapi/tl_payment_option_gen.go +++ b/tdapi/tl_payment_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_payment_provider_gen.go b/tdapi/tl_payment_provider_gen.go index 3b8b321372..240885dd27 100644 --- a/tdapi/tl_payment_provider_gen.go +++ b/tdapi/tl_payment_provider_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_payment_receipt_gen.go b/tdapi/tl_payment_receipt_gen.go index 801b7912a6..253fa59232 100644 --- a/tdapi/tl_payment_receipt_gen.go +++ b/tdapi/tl_payment_receipt_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_payment_receipt_type_gen.go b/tdapi/tl_payment_receipt_type_gen.go index 08e418ead3..3e525303c5 100644 --- a/tdapi/tl_payment_receipt_type_gen.go +++ b/tdapi/tl_payment_receipt_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_payment_result_gen.go b/tdapi/tl_payment_result_gen.go index ad60ee12cd..8b1619a7b6 100644 --- a/tdapi/tl_payment_result_gen.go +++ b/tdapi/tl_payment_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_personal_details_gen.go b/tdapi/tl_personal_details_gen.go index 84d288646d..35d6acfc36 100644 --- a/tdapi/tl_personal_details_gen.go +++ b/tdapi/tl_personal_details_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_personal_document_gen.go b/tdapi/tl_personal_document_gen.go index f52253d581..168fd6dd65 100644 --- a/tdapi/tl_personal_document_gen.go +++ b/tdapi/tl_personal_document_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_phone_number_authentication_settings_gen.go b/tdapi/tl_phone_number_authentication_settings_gen.go index a478f2eba6..e8ad3ab7a6 100644 --- a/tdapi/tl_phone_number_authentication_settings_gen.go +++ b/tdapi/tl_phone_number_authentication_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_phone_number_code_type_gen.go b/tdapi/tl_phone_number_code_type_gen.go index ac130f17e8..4da7ba3d48 100644 --- a/tdapi/tl_phone_number_code_type_gen.go +++ b/tdapi/tl_phone_number_code_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_phone_number_info_gen.go b/tdapi/tl_phone_number_info_gen.go index d97db669ce..770ae62aa9 100644 --- a/tdapi/tl_phone_number_info_gen.go +++ b/tdapi/tl_phone_number_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_photo_gen.go b/tdapi/tl_photo_gen.go index df5682379d..7d80d35dbc 100644 --- a/tdapi/tl_photo_gen.go +++ b/tdapi/tl_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_photo_size_gen.go b/tdapi/tl_photo_size_gen.go index 89dfbc0942..cf38eb1ae8 100644 --- a/tdapi/tl_photo_size_gen.go +++ b/tdapi/tl_photo_size_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_pin_chat_message_gen.go b/tdapi/tl_pin_chat_message_gen.go index 63cb635e79..c49e18eca9 100644 --- a/tdapi/tl_pin_chat_message_gen.go +++ b/tdapi/tl_pin_chat_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_ping_proxy_gen.go b/tdapi/tl_ping_proxy_gen.go index 024475db3a..db625f75ec 100644 --- a/tdapi/tl_ping_proxy_gen.go +++ b/tdapi/tl_ping_proxy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_point_gen.go b/tdapi/tl_point_gen.go index e660451f62..d6fcdbecd1 100644 --- a/tdapi/tl_point_gen.go +++ b/tdapi/tl_point_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_poll_gen.go b/tdapi/tl_poll_gen.go index 5ba43f40a5..fdfbb25760 100644 --- a/tdapi/tl_poll_gen.go +++ b/tdapi/tl_poll_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_poll_option_gen.go b/tdapi/tl_poll_option_gen.go index f80dc58681..6c02e1fcd9 100644 --- a/tdapi/tl_poll_option_gen.go +++ b/tdapi/tl_poll_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_poll_type_gen.go b/tdapi/tl_poll_type_gen.go index 85a15da294..95b336b393 100644 --- a/tdapi/tl_poll_type_gen.go +++ b/tdapi/tl_poll_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_preliminary_upload_file_gen.go b/tdapi/tl_preliminary_upload_file_gen.go index 00593675c7..b6ffdc0dda 100644 --- a/tdapi/tl_preliminary_upload_file_gen.go +++ b/tdapi/tl_preliminary_upload_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_feature_gen.go b/tdapi/tl_premium_feature_gen.go index 37fdbb4783..2843a4e406 100644 --- a/tdapi/tl_premium_feature_gen.go +++ b/tdapi/tl_premium_feature_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_feature_promotion_animation_gen.go b/tdapi/tl_premium_feature_promotion_animation_gen.go index b7f171cfb0..7163b7231f 100644 --- a/tdapi/tl_premium_feature_promotion_animation_gen.go +++ b/tdapi/tl_premium_feature_promotion_animation_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_features_gen.go b/tdapi/tl_premium_features_gen.go index 7addab8ddb..3e00b5f151 100644 --- a/tdapi/tl_premium_features_gen.go +++ b/tdapi/tl_premium_features_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_gift_code_info_gen.go b/tdapi/tl_premium_gift_code_info_gen.go index d379581373..bd8df0dd09 100644 --- a/tdapi/tl_premium_gift_code_info_gen.go +++ b/tdapi/tl_premium_gift_code_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_gift_code_payment_option_gen.go b/tdapi/tl_premium_gift_code_payment_option_gen.go index 2a2f1ad512..1857d9104f 100644 --- a/tdapi/tl_premium_gift_code_payment_option_gen.go +++ b/tdapi/tl_premium_gift_code_payment_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_gift_code_payment_options_gen.go b/tdapi/tl_premium_gift_code_payment_options_gen.go index 50989bddeb..4b30915d75 100644 --- a/tdapi/tl_premium_gift_code_payment_options_gen.go +++ b/tdapi/tl_premium_gift_code_payment_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_limit_gen.go b/tdapi/tl_premium_limit_gen.go index 9215115c6b..2cd3c086f9 100644 --- a/tdapi/tl_premium_limit_gen.go +++ b/tdapi/tl_premium_limit_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_limit_type_gen.go b/tdapi/tl_premium_limit_type_gen.go index e64907d15c..77992ce9f5 100644 --- a/tdapi/tl_premium_limit_type_gen.go +++ b/tdapi/tl_premium_limit_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_payment_option_gen.go b/tdapi/tl_premium_payment_option_gen.go index 1c68c48680..444db70f27 100644 --- a/tdapi/tl_premium_payment_option_gen.go +++ b/tdapi/tl_premium_payment_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_source_gen.go b/tdapi/tl_premium_source_gen.go index 9ed8c51776..a7bdaf0026 100644 --- a/tdapi/tl_premium_source_gen.go +++ b/tdapi/tl_premium_source_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_state_gen.go b/tdapi/tl_premium_state_gen.go index caf1771710..00768d2902 100644 --- a/tdapi/tl_premium_state_gen.go +++ b/tdapi/tl_premium_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_state_payment_option_gen.go b/tdapi/tl_premium_state_payment_option_gen.go index 72294e7053..b696050a6e 100644 --- a/tdapi/tl_premium_state_payment_option_gen.go +++ b/tdapi/tl_premium_state_payment_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_premium_story_feature_gen.go b/tdapi/tl_premium_story_feature_gen.go index d3ffd1b05c..b88a2b037d 100644 --- a/tdapi/tl_premium_story_feature_gen.go +++ b/tdapi/tl_premium_story_feature_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_prepaid_giveaway_gen.go b/tdapi/tl_prepaid_giveaway_gen.go index 0d5064d0e6..9dcf14bf50 100644 --- a/tdapi/tl_prepaid_giveaway_gen.go +++ b/tdapi/tl_prepaid_giveaway_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_prepared_inline_message_gen.go b/tdapi/tl_prepared_inline_message_gen.go index 4f49111435..269a9766c9 100644 --- a/tdapi/tl_prepared_inline_message_gen.go +++ b/tdapi/tl_prepared_inline_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_prepared_inline_message_id_gen.go b/tdapi/tl_prepared_inline_message_id_gen.go index 478c281afc..652f5c121e 100644 --- a/tdapi/tl_prepared_inline_message_id_gen.go +++ b/tdapi/tl_prepared_inline_message_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_process_chat_folder_new_chats_gen.go b/tdapi/tl_process_chat_folder_new_chats_gen.go index 7fdf25ea14..dbf16f33c6 100644 --- a/tdapi/tl_process_chat_folder_new_chats_gen.go +++ b/tdapi/tl_process_chat_folder_new_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_process_chat_join_request_gen.go b/tdapi/tl_process_chat_join_request_gen.go index 97071994b7..e4ce4c577d 100644 --- a/tdapi/tl_process_chat_join_request_gen.go +++ b/tdapi/tl_process_chat_join_request_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_process_chat_join_requests_gen.go b/tdapi/tl_process_chat_join_requests_gen.go index 73e6fdab75..850f20b1fb 100644 --- a/tdapi/tl_process_chat_join_requests_gen.go +++ b/tdapi/tl_process_chat_join_requests_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_process_push_notification_gen.go b/tdapi/tl_process_push_notification_gen.go index 8b28867c59..e2a05ebd91 100644 --- a/tdapi/tl_process_push_notification_gen.go +++ b/tdapi/tl_process_push_notification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_product_info_gen.go b/tdapi/tl_product_info_gen.go index 65326acaad..38d70db641 100644 --- a/tdapi/tl_product_info_gen.go +++ b/tdapi/tl_product_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_profile_accent_color_gen.go b/tdapi/tl_profile_accent_color_gen.go index 3ed2d11eba..d5324b62c4 100644 --- a/tdapi/tl_profile_accent_color_gen.go +++ b/tdapi/tl_profile_accent_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_profile_accent_colors_gen.go b/tdapi/tl_profile_accent_colors_gen.go index d0e860303e..c648dd58f8 100644 --- a/tdapi/tl_profile_accent_colors_gen.go +++ b/tdapi/tl_profile_accent_colors_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_profile_photo_gen.go b/tdapi/tl_profile_photo_gen.go index a852352725..2b70c2005a 100644 --- a/tdapi/tl_profile_photo_gen.go +++ b/tdapi/tl_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_proxies_gen.go b/tdapi/tl_proxies_gen.go index 3328d67bca..d8e82b769e 100644 --- a/tdapi/tl_proxies_gen.go +++ b/tdapi/tl_proxies_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_proxy_gen.go b/tdapi/tl_proxy_gen.go index 31963ff4e1..9dba09f106 100644 --- a/tdapi/tl_proxy_gen.go +++ b/tdapi/tl_proxy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_proxy_type_gen.go b/tdapi/tl_proxy_type_gen.go index a602057a3a..12aa16f8a6 100644 --- a/tdapi/tl_proxy_type_gen.go +++ b/tdapi/tl_proxy_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_public_chat_type_gen.go b/tdapi/tl_public_chat_type_gen.go index d29ac3ec46..3b18ab845c 100644 --- a/tdapi/tl_public_chat_type_gen.go +++ b/tdapi/tl_public_chat_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_public_forward_gen.go b/tdapi/tl_public_forward_gen.go index 82bbf3ce75..e43448c3b9 100644 --- a/tdapi/tl_public_forward_gen.go +++ b/tdapi/tl_public_forward_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_public_forwards_gen.go b/tdapi/tl_public_forwards_gen.go index 8d24ce8440..52be111ec3 100644 --- a/tdapi/tl_public_forwards_gen.go +++ b/tdapi/tl_public_forwards_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_push_message_content_gen.go b/tdapi/tl_push_message_content_gen.go index 3e7b81989d..5560c1cbff 100644 --- a/tdapi/tl_push_message_content_gen.go +++ b/tdapi/tl_push_message_content_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_push_receiver_id_gen.go b/tdapi/tl_push_receiver_id_gen.go index d47d3ac884..2d3a639370 100644 --- a/tdapi/tl_push_receiver_id_gen.go +++ b/tdapi/tl_push_receiver_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_quick_reply_message_gen.go b/tdapi/tl_quick_reply_message_gen.go index 1d2d68c598..349f162c99 100644 --- a/tdapi/tl_quick_reply_message_gen.go +++ b/tdapi/tl_quick_reply_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_quick_reply_messages_gen.go b/tdapi/tl_quick_reply_messages_gen.go index b43d7fe24f..961407d9a0 100644 --- a/tdapi/tl_quick_reply_messages_gen.go +++ b/tdapi/tl_quick_reply_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_quick_reply_shortcut_gen.go b/tdapi/tl_quick_reply_shortcut_gen.go index 30268c92f8..8f7058f789 100644 --- a/tdapi/tl_quick_reply_shortcut_gen.go +++ b/tdapi/tl_quick_reply_shortcut_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_rate_speech_recognition_gen.go b/tdapi/tl_rate_speech_recognition_gen.go index 851e35c57b..a2c34530fe 100644 --- a/tdapi/tl_rate_speech_recognition_gen.go +++ b/tdapi/tl_rate_speech_recognition_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reaction_notification_settings_gen.go b/tdapi/tl_reaction_notification_settings_gen.go index e9f58498f8..5219d3321b 100644 --- a/tdapi/tl_reaction_notification_settings_gen.go +++ b/tdapi/tl_reaction_notification_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reaction_notification_source_gen.go b/tdapi/tl_reaction_notification_source_gen.go index b91503c9e9..00aa2cc877 100644 --- a/tdapi/tl_reaction_notification_source_gen.go +++ b/tdapi/tl_reaction_notification_source_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reaction_type_gen.go b/tdapi/tl_reaction_type_gen.go index 8367bb26fe..3801fe2d92 100644 --- a/tdapi/tl_reaction_type_gen.go +++ b/tdapi/tl_reaction_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reaction_unavailability_reason_gen.go b/tdapi/tl_reaction_unavailability_reason_gen.go index 6975e53e7f..a5b99f1f3d 100644 --- a/tdapi/tl_reaction_unavailability_reason_gen.go +++ b/tdapi/tl_reaction_unavailability_reason_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_read_all_chat_mentions_gen.go b/tdapi/tl_read_all_chat_mentions_gen.go index e7a7b4f11b..33861a5055 100644 --- a/tdapi/tl_read_all_chat_mentions_gen.go +++ b/tdapi/tl_read_all_chat_mentions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_read_all_chat_reactions_gen.go b/tdapi/tl_read_all_chat_reactions_gen.go index acd16eb08a..7fbdb9cfd5 100644 --- a/tdapi/tl_read_all_chat_reactions_gen.go +++ b/tdapi/tl_read_all_chat_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_read_all_message_thread_mentions_gen.go b/tdapi/tl_read_all_message_thread_mentions_gen.go index 207c44c92b..0b2713b855 100644 --- a/tdapi/tl_read_all_message_thread_mentions_gen.go +++ b/tdapi/tl_read_all_message_thread_mentions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_read_all_message_thread_reactions_gen.go b/tdapi/tl_read_all_message_thread_reactions_gen.go index 182fb5fb73..39a5ac80cd 100644 --- a/tdapi/tl_read_all_message_thread_reactions_gen.go +++ b/tdapi/tl_read_all_message_thread_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_read_chat_list_gen.go b/tdapi/tl_read_chat_list_gen.go index 4cdf297f68..d7fe2d2ec2 100644 --- a/tdapi/tl_read_chat_list_gen.go +++ b/tdapi/tl_read_chat_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_read_date_privacy_settings_gen.go b/tdapi/tl_read_date_privacy_settings_gen.go index 0af46abc3c..bc16f00fec 100644 --- a/tdapi/tl_read_date_privacy_settings_gen.go +++ b/tdapi/tl_read_date_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_read_file_part_gen.go b/tdapi/tl_read_file_part_gen.go index 8af36a3d56..80660af7d7 100644 --- a/tdapi/tl_read_file_part_gen.go +++ b/tdapi/tl_read_file_part_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_readd_quick_reply_shortcut_messages_gen.go b/tdapi/tl_readd_quick_reply_shortcut_messages_gen.go index e0a0856a6f..226841c2cb 100644 --- a/tdapi/tl_readd_quick_reply_shortcut_messages_gen.go +++ b/tdapi/tl_readd_quick_reply_shortcut_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_recognize_speech_gen.go b/tdapi/tl_recognize_speech_gen.go index e1ca4ea0e7..5477e65dd5 100644 --- a/tdapi/tl_recognize_speech_gen.go +++ b/tdapi/tl_recognize_speech_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_recommended_chat_folder_gen.go b/tdapi/tl_recommended_chat_folder_gen.go index 7932bd9fc9..89143858b2 100644 --- a/tdapi/tl_recommended_chat_folder_gen.go +++ b/tdapi/tl_recommended_chat_folder_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_recommended_chat_folders_gen.go b/tdapi/tl_recommended_chat_folders_gen.go index cae9d12429..b2936caceb 100644 --- a/tdapi/tl_recommended_chat_folders_gen.go +++ b/tdapi/tl_recommended_chat_folders_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_recover_authentication_password_gen.go b/tdapi/tl_recover_authentication_password_gen.go index acc3b60b9c..456ebc9c79 100644 --- a/tdapi/tl_recover_authentication_password_gen.go +++ b/tdapi/tl_recover_authentication_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_recover_password_gen.go b/tdapi/tl_recover_password_gen.go index 76fa729e2a..64c441adeb 100644 --- a/tdapi/tl_recover_password_gen.go +++ b/tdapi/tl_recover_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_recovery_email_address_gen.go b/tdapi/tl_recovery_email_address_gen.go index 6fb52dbdb1..55024ff9b2 100644 --- a/tdapi/tl_recovery_email_address_gen.go +++ b/tdapi/tl_recovery_email_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_refund_star_payment_gen.go b/tdapi/tl_refund_star_payment_gen.go index 84ccec5d2c..a515b041a2 100644 --- a/tdapi/tl_refund_star_payment_gen.go +++ b/tdapi/tl_refund_star_payment_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_register_device_gen.go b/tdapi/tl_register_device_gen.go index 70b23a6585..e32e4edaf0 100644 --- a/tdapi/tl_register_device_gen.go +++ b/tdapi/tl_register_device_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_register_user_gen.go b/tdapi/tl_register_user_gen.go index 98200b95eb..6ce5ace049 100644 --- a/tdapi/tl_register_user_gen.go +++ b/tdapi/tl_register_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_registry_gen.go b/tdapi/tl_registry_gen.go index 77ed71d5b6..eaa82f9338 100644 --- a/tdapi/tl_registry_gen.go +++ b/tdapi/tl_registry_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remote_file_gen.go b/tdapi/tl_remote_file_gen.go index e532cbfcd3..4c5818ceb2 100644 --- a/tdapi/tl_remote_file_gen.go +++ b/tdapi/tl_remote_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_all_files_from_downloads_gen.go b/tdapi/tl_remove_all_files_from_downloads_gen.go index 7da9c90b7b..aefa8a098c 100644 --- a/tdapi/tl_remove_all_files_from_downloads_gen.go +++ b/tdapi/tl_remove_all_files_from_downloads_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_business_connected_bot_from_chat_gen.go b/tdapi/tl_remove_business_connected_bot_from_chat_gen.go index 7832b915f2..da4a1c25e9 100644 --- a/tdapi/tl_remove_business_connected_bot_from_chat_gen.go +++ b/tdapi/tl_remove_business_connected_bot_from_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_chat_action_bar_gen.go b/tdapi/tl_remove_chat_action_bar_gen.go index 0a1e02a5d8..52d5b7087c 100644 --- a/tdapi/tl_remove_chat_action_bar_gen.go +++ b/tdapi/tl_remove_chat_action_bar_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_contacts_gen.go b/tdapi/tl_remove_contacts_gen.go index 1749211f25..eb72792b70 100644 --- a/tdapi/tl_remove_contacts_gen.go +++ b/tdapi/tl_remove_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_favorite_sticker_gen.go b/tdapi/tl_remove_favorite_sticker_gen.go index 68e74e34d5..c105660141 100644 --- a/tdapi/tl_remove_favorite_sticker_gen.go +++ b/tdapi/tl_remove_favorite_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_file_from_downloads_gen.go b/tdapi/tl_remove_file_from_downloads_gen.go index 01bd3f0ab5..c65638dd9d 100644 --- a/tdapi/tl_remove_file_from_downloads_gen.go +++ b/tdapi/tl_remove_file_from_downloads_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_installed_background_gen.go b/tdapi/tl_remove_installed_background_gen.go index cba40662a3..fbc5868d23 100644 --- a/tdapi/tl_remove_installed_background_gen.go +++ b/tdapi/tl_remove_installed_background_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_message_reaction_gen.go b/tdapi/tl_remove_message_reaction_gen.go index a60e4cfc49..87d80199a9 100644 --- a/tdapi/tl_remove_message_reaction_gen.go +++ b/tdapi/tl_remove_message_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_notification_gen.go b/tdapi/tl_remove_notification_gen.go index 5dd53f8b00..584a197d80 100644 --- a/tdapi/tl_remove_notification_gen.go +++ b/tdapi/tl_remove_notification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_notification_group_gen.go b/tdapi/tl_remove_notification_group_gen.go index 2680cb285f..ab9b83efe9 100644 --- a/tdapi/tl_remove_notification_group_gen.go +++ b/tdapi/tl_remove_notification_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_pending_paid_message_reactions_gen.go b/tdapi/tl_remove_pending_paid_message_reactions_gen.go index b6916b2fdd..a43f4036ac 100644 --- a/tdapi/tl_remove_pending_paid_message_reactions_gen.go +++ b/tdapi/tl_remove_pending_paid_message_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_proxy_gen.go b/tdapi/tl_remove_proxy_gen.go index 9338541633..efb83d6a28 100644 --- a/tdapi/tl_remove_proxy_gen.go +++ b/tdapi/tl_remove_proxy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_recent_hashtag_gen.go b/tdapi/tl_remove_recent_hashtag_gen.go index b7df84b17b..5db7edc527 100644 --- a/tdapi/tl_remove_recent_hashtag_gen.go +++ b/tdapi/tl_remove_recent_hashtag_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_recent_sticker_gen.go b/tdapi/tl_remove_recent_sticker_gen.go index 3262bdf849..ecb3830140 100644 --- a/tdapi/tl_remove_recent_sticker_gen.go +++ b/tdapi/tl_remove_recent_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_recently_found_chat_gen.go b/tdapi/tl_remove_recently_found_chat_gen.go index da67829f3e..e031e0be5b 100644 --- a/tdapi/tl_remove_recently_found_chat_gen.go +++ b/tdapi/tl_remove_recently_found_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_saved_animation_gen.go b/tdapi/tl_remove_saved_animation_gen.go index 86bf18423a..0417357cdc 100644 --- a/tdapi/tl_remove_saved_animation_gen.go +++ b/tdapi/tl_remove_saved_animation_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_saved_notification_sound_gen.go b/tdapi/tl_remove_saved_notification_sound_gen.go index 180aade97e..2d349a2b3f 100644 --- a/tdapi/tl_remove_saved_notification_sound_gen.go +++ b/tdapi/tl_remove_saved_notification_sound_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_searched_for_tag_gen.go b/tdapi/tl_remove_searched_for_tag_gen.go index fc11a6b789..1e478e37ec 100644 --- a/tdapi/tl_remove_searched_for_tag_gen.go +++ b/tdapi/tl_remove_searched_for_tag_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_sticker_from_set_gen.go b/tdapi/tl_remove_sticker_from_set_gen.go index 3d6a0bce1a..1bc939fa77 100644 --- a/tdapi/tl_remove_sticker_from_set_gen.go +++ b/tdapi/tl_remove_sticker_from_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_remove_top_chat_gen.go b/tdapi/tl_remove_top_chat_gen.go index 402cce26e8..19b94da9c3 100644 --- a/tdapi/tl_remove_top_chat_gen.go +++ b/tdapi/tl_remove_top_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reorder_active_usernames_gen.go b/tdapi/tl_reorder_active_usernames_gen.go index 7f05532f1a..b8a422d604 100644 --- a/tdapi/tl_reorder_active_usernames_gen.go +++ b/tdapi/tl_reorder_active_usernames_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reorder_bot_active_usernames_gen.go b/tdapi/tl_reorder_bot_active_usernames_gen.go index ec599c7f07..9f660c83a3 100644 --- a/tdapi/tl_reorder_bot_active_usernames_gen.go +++ b/tdapi/tl_reorder_bot_active_usernames_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reorder_bot_media_previews_gen.go b/tdapi/tl_reorder_bot_media_previews_gen.go index b5cba55a21..920b2e2dbf 100644 --- a/tdapi/tl_reorder_bot_media_previews_gen.go +++ b/tdapi/tl_reorder_bot_media_previews_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reorder_chat_folders_gen.go b/tdapi/tl_reorder_chat_folders_gen.go index bd91f4bb4e..6676b05c6d 100644 --- a/tdapi/tl_reorder_chat_folders_gen.go +++ b/tdapi/tl_reorder_chat_folders_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reorder_installed_sticker_sets_gen.go b/tdapi/tl_reorder_installed_sticker_sets_gen.go index e0753604ff..b2fca1aeb4 100644 --- a/tdapi/tl_reorder_installed_sticker_sets_gen.go +++ b/tdapi/tl_reorder_installed_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reorder_quick_reply_shortcuts_gen.go b/tdapi/tl_reorder_quick_reply_shortcuts_gen.go index 38f71b23a6..e22b728f95 100644 --- a/tdapi/tl_reorder_quick_reply_shortcuts_gen.go +++ b/tdapi/tl_reorder_quick_reply_shortcuts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reorder_supergroup_active_usernames_gen.go b/tdapi/tl_reorder_supergroup_active_usernames_gen.go index 8bf3fbd966..f512b87aeb 100644 --- a/tdapi/tl_reorder_supergroup_active_usernames_gen.go +++ b/tdapi/tl_reorder_supergroup_active_usernames_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_replace_primary_chat_invite_link_gen.go b/tdapi/tl_replace_primary_chat_invite_link_gen.go index 96aeb25706..aacf9b1a53 100644 --- a/tdapi/tl_replace_primary_chat_invite_link_gen.go +++ b/tdapi/tl_replace_primary_chat_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_replace_sticker_in_set_gen.go b/tdapi/tl_replace_sticker_in_set_gen.go index 7c023cb1e5..fc2933862a 100644 --- a/tdapi/tl_replace_sticker_in_set_gen.go +++ b/tdapi/tl_replace_sticker_in_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_replace_video_chat_rtmp_url_gen.go b/tdapi/tl_replace_video_chat_rtmp_url_gen.go index 577f53459f..4c21afc09d 100644 --- a/tdapi/tl_replace_video_chat_rtmp_url_gen.go +++ b/tdapi/tl_replace_video_chat_rtmp_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reply_markup_gen.go b/tdapi/tl_reply_markup_gen.go index 2d5197c28c..1c50afbd6e 100644 --- a/tdapi/tl_reply_markup_gen.go +++ b/tdapi/tl_reply_markup_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_authentication_code_missing_gen.go b/tdapi/tl_report_authentication_code_missing_gen.go index 1da718d81b..44f434d94d 100644 --- a/tdapi/tl_report_authentication_code_missing_gen.go +++ b/tdapi/tl_report_authentication_code_missing_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_chat_gen.go b/tdapi/tl_report_chat_gen.go index 8ad50e863b..7d6b97ea3a 100644 --- a/tdapi/tl_report_chat_gen.go +++ b/tdapi/tl_report_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_chat_photo_gen.go b/tdapi/tl_report_chat_photo_gen.go index 137ddfd441..67fae50709 100644 --- a/tdapi/tl_report_chat_photo_gen.go +++ b/tdapi/tl_report_chat_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_chat_result_gen.go b/tdapi/tl_report_chat_result_gen.go index a6d5571b65..5997c3357d 100644 --- a/tdapi/tl_report_chat_result_gen.go +++ b/tdapi/tl_report_chat_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_chat_sponsored_message_gen.go b/tdapi/tl_report_chat_sponsored_message_gen.go index 4ac58bb36e..10f9514ca2 100644 --- a/tdapi/tl_report_chat_sponsored_message_gen.go +++ b/tdapi/tl_report_chat_sponsored_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_chat_sponsored_message_result_gen.go b/tdapi/tl_report_chat_sponsored_message_result_gen.go index d26b849cb4..a2986e723b 100644 --- a/tdapi/tl_report_chat_sponsored_message_result_gen.go +++ b/tdapi/tl_report_chat_sponsored_message_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_message_reactions_gen.go b/tdapi/tl_report_message_reactions_gen.go index 63794eba11..822672e79b 100644 --- a/tdapi/tl_report_message_reactions_gen.go +++ b/tdapi/tl_report_message_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_option_gen.go b/tdapi/tl_report_option_gen.go index 231f91dfcd..7dd1a0798b 100644 --- a/tdapi/tl_report_option_gen.go +++ b/tdapi/tl_report_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_phone_number_code_missing_gen.go b/tdapi/tl_report_phone_number_code_missing_gen.go index 1f35dacebf..00d39a6fde 100644 --- a/tdapi/tl_report_phone_number_code_missing_gen.go +++ b/tdapi/tl_report_phone_number_code_missing_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_reason_gen.go b/tdapi/tl_report_reason_gen.go index 602da16397..c241fad354 100644 --- a/tdapi/tl_report_reason_gen.go +++ b/tdapi/tl_report_reason_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_story_gen.go b/tdapi/tl_report_story_gen.go index 80e127abe2..72d20d43e1 100644 --- a/tdapi/tl_report_story_gen.go +++ b/tdapi/tl_report_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_story_result_gen.go b/tdapi/tl_report_story_result_gen.go index 1192e1301e..daeb486f48 100644 --- a/tdapi/tl_report_story_result_gen.go +++ b/tdapi/tl_report_story_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_supergroup_anti_spam_false_positive_gen.go b/tdapi/tl_report_supergroup_anti_spam_false_positive_gen.go index 4757c74d2a..2176e15336 100644 --- a/tdapi/tl_report_supergroup_anti_spam_false_positive_gen.go +++ b/tdapi/tl_report_supergroup_anti_spam_false_positive_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_report_supergroup_spam_gen.go b/tdapi/tl_report_supergroup_spam_gen.go index 36a6f8a163..e5395950c4 100644 --- a/tdapi/tl_report_supergroup_spam_gen.go +++ b/tdapi/tl_report_supergroup_spam_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_request_authentication_password_recovery_gen.go b/tdapi/tl_request_authentication_password_recovery_gen.go index b55d48c2f0..5a891fc45d 100644 --- a/tdapi/tl_request_authentication_password_recovery_gen.go +++ b/tdapi/tl_request_authentication_password_recovery_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_request_password_recovery_gen.go b/tdapi/tl_request_password_recovery_gen.go index b044dc7093..8c7cc4d548 100644 --- a/tdapi/tl_request_password_recovery_gen.go +++ b/tdapi/tl_request_password_recovery_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_request_qr_code_authentication_gen.go b/tdapi/tl_request_qr_code_authentication_gen.go index 3e6d0b6a4b..864b17f738 100644 --- a/tdapi/tl_request_qr_code_authentication_gen.go +++ b/tdapi/tl_request_qr_code_authentication_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_resend_authentication_code_gen.go b/tdapi/tl_resend_authentication_code_gen.go index 7c1fe05c90..a46bdb504f 100644 --- a/tdapi/tl_resend_authentication_code_gen.go +++ b/tdapi/tl_resend_authentication_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_resend_code_reason_gen.go b/tdapi/tl_resend_code_reason_gen.go index 99869107c3..95176859d5 100644 --- a/tdapi/tl_resend_code_reason_gen.go +++ b/tdapi/tl_resend_code_reason_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_resend_email_address_verification_code_gen.go b/tdapi/tl_resend_email_address_verification_code_gen.go index 79d5beaf40..ed07107e03 100644 --- a/tdapi/tl_resend_email_address_verification_code_gen.go +++ b/tdapi/tl_resend_email_address_verification_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_resend_login_email_address_code_gen.go b/tdapi/tl_resend_login_email_address_code_gen.go index 4a15131bbc..acb18be873 100644 --- a/tdapi/tl_resend_login_email_address_code_gen.go +++ b/tdapi/tl_resend_login_email_address_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_resend_messages_gen.go b/tdapi/tl_resend_messages_gen.go index 00505c9451..cf4b8d3dca 100644 --- a/tdapi/tl_resend_messages_gen.go +++ b/tdapi/tl_resend_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_resend_phone_number_code_gen.go b/tdapi/tl_resend_phone_number_code_gen.go index 23f7e0f1c3..53ed16cde5 100644 --- a/tdapi/tl_resend_phone_number_code_gen.go +++ b/tdapi/tl_resend_phone_number_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_resend_recovery_email_address_code_gen.go b/tdapi/tl_resend_recovery_email_address_code_gen.go index dbf54bdabe..94002aff0b 100644 --- a/tdapi/tl_resend_recovery_email_address_code_gen.go +++ b/tdapi/tl_resend_recovery_email_address_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reset_all_notification_settings_gen.go b/tdapi/tl_reset_all_notification_settings_gen.go index 0d183548f6..b0cad98163 100644 --- a/tdapi/tl_reset_all_notification_settings_gen.go +++ b/tdapi/tl_reset_all_notification_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reset_authentication_email_address_gen.go b/tdapi/tl_reset_authentication_email_address_gen.go index 499e176f30..d75b4b1686 100644 --- a/tdapi/tl_reset_authentication_email_address_gen.go +++ b/tdapi/tl_reset_authentication_email_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reset_installed_backgrounds_gen.go b/tdapi/tl_reset_installed_backgrounds_gen.go index 9950b366ef..cc1dd2fb61 100644 --- a/tdapi/tl_reset_installed_backgrounds_gen.go +++ b/tdapi/tl_reset_installed_backgrounds_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reset_network_statistics_gen.go b/tdapi/tl_reset_network_statistics_gen.go index 7d9fb593fd..d17afee51f 100644 --- a/tdapi/tl_reset_network_statistics_gen.go +++ b/tdapi/tl_reset_network_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reset_password_gen.go b/tdapi/tl_reset_password_gen.go index 8cd9a07d9a..3b56a8a562 100644 --- a/tdapi/tl_reset_password_gen.go +++ b/tdapi/tl_reset_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reset_password_result_gen.go b/tdapi/tl_reset_password_result_gen.go index 347ef2867b..6607579725 100644 --- a/tdapi/tl_reset_password_result_gen.go +++ b/tdapi/tl_reset_password_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_reuse_star_subscription_gen.go b/tdapi/tl_reuse_star_subscription_gen.go index eabeb2bc1f..7699377ced 100644 --- a/tdapi/tl_reuse_star_subscription_gen.go +++ b/tdapi/tl_reuse_star_subscription_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_revenue_withdrawal_state_gen.go b/tdapi/tl_revenue_withdrawal_state_gen.go index 9e70511a7d..48a7100f8b 100644 --- a/tdapi/tl_revenue_withdrawal_state_gen.go +++ b/tdapi/tl_revenue_withdrawal_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_revoke_chat_invite_link_gen.go b/tdapi/tl_revoke_chat_invite_link_gen.go index b04ea3a886..1cca75ed6c 100644 --- a/tdapi/tl_revoke_chat_invite_link_gen.go +++ b/tdapi/tl_revoke_chat_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_revoke_group_call_invite_link_gen.go b/tdapi/tl_revoke_group_call_invite_link_gen.go index 847382a7b4..7aeb27264f 100644 --- a/tdapi/tl_revoke_group_call_invite_link_gen.go +++ b/tdapi/tl_revoke_group_call_invite_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_rich_text_gen.go b/tdapi/tl_rich_text_gen.go index a5592e9ff2..f7f54437e6 100644 --- a/tdapi/tl_rich_text_gen.go +++ b/tdapi/tl_rich_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_rtmp_url_gen.go b/tdapi/tl_rtmp_url_gen.go index 4c805c7e80..f37a4b4ebc 100644 --- a/tdapi/tl_rtmp_url_gen.go +++ b/tdapi/tl_rtmp_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_save_application_log_event_gen.go b/tdapi/tl_save_application_log_event_gen.go index ecdf5d5eb8..dccdaac82b 100644 --- a/tdapi/tl_save_application_log_event_gen.go +++ b/tdapi/tl_save_application_log_event_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_save_prepared_inline_message_gen.go b/tdapi/tl_save_prepared_inline_message_gen.go index 714c4d989e..4b6bd2912e 100644 --- a/tdapi/tl_save_prepared_inline_message_gen.go +++ b/tdapi/tl_save_prepared_inline_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_saved_credentials_gen.go b/tdapi/tl_saved_credentials_gen.go index 21cb521232..f154dc755b 100644 --- a/tdapi/tl_saved_credentials_gen.go +++ b/tdapi/tl_saved_credentials_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_saved_messages_tag_gen.go b/tdapi/tl_saved_messages_tag_gen.go index 54eb74ab60..2c775c5ae7 100644 --- a/tdapi/tl_saved_messages_tag_gen.go +++ b/tdapi/tl_saved_messages_tag_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_saved_messages_tags_gen.go b/tdapi/tl_saved_messages_tags_gen.go index f68c9b5baf..a9a506558b 100644 --- a/tdapi/tl_saved_messages_tags_gen.go +++ b/tdapi/tl_saved_messages_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_saved_messages_topic_gen.go b/tdapi/tl_saved_messages_topic_gen.go index ecb84e7eea..3b921e1586 100644 --- a/tdapi/tl_saved_messages_topic_gen.go +++ b/tdapi/tl_saved_messages_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_saved_messages_topic_type_gen.go b/tdapi/tl_saved_messages_topic_type_gen.go index 94eab9b27c..4aef6baf1b 100644 --- a/tdapi/tl_saved_messages_topic_type_gen.go +++ b/tdapi/tl_saved_messages_topic_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_scope_autosave_settings_gen.go b/tdapi/tl_scope_autosave_settings_gen.go index 08eeb4f3ed..d4935c00c5 100644 --- a/tdapi/tl_scope_autosave_settings_gen.go +++ b/tdapi/tl_scope_autosave_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_scope_notification_settings_gen.go b/tdapi/tl_scope_notification_settings_gen.go index b91c7d033a..d926d1c6d8 100644 --- a/tdapi/tl_scope_notification_settings_gen.go +++ b/tdapi/tl_scope_notification_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_background_gen.go b/tdapi/tl_search_background_gen.go index 3b4edf74c7..bf2501c9e3 100644 --- a/tdapi/tl_search_background_gen.go +++ b/tdapi/tl_search_background_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_call_messages_gen.go b/tdapi/tl_search_call_messages_gen.go index c70bb2ac4e..9134e79544 100644 --- a/tdapi/tl_search_call_messages_gen.go +++ b/tdapi/tl_search_call_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_chat_members_gen.go b/tdapi/tl_search_chat_members_gen.go index f090f2c15e..c301923cfb 100644 --- a/tdapi/tl_search_chat_members_gen.go +++ b/tdapi/tl_search_chat_members_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_chat_messages_gen.go b/tdapi/tl_search_chat_messages_gen.go index 08e1330308..b538399103 100644 --- a/tdapi/tl_search_chat_messages_gen.go +++ b/tdapi/tl_search_chat_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_chat_recent_location_messages_gen.go b/tdapi/tl_search_chat_recent_location_messages_gen.go index e310ccc0d1..b59bfa59aa 100644 --- a/tdapi/tl_search_chat_recent_location_messages_gen.go +++ b/tdapi/tl_search_chat_recent_location_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_chats_gen.go b/tdapi/tl_search_chats_gen.go index 456d18b40a..c6374bbe7f 100644 --- a/tdapi/tl_search_chats_gen.go +++ b/tdapi/tl_search_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_chats_on_server_gen.go b/tdapi/tl_search_chats_on_server_gen.go index d3682a3378..285bb0b7a7 100644 --- a/tdapi/tl_search_chats_on_server_gen.go +++ b/tdapi/tl_search_chats_on_server_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_contacts_gen.go b/tdapi/tl_search_contacts_gen.go index a64dd96cba..3e587117df 100644 --- a/tdapi/tl_search_contacts_gen.go +++ b/tdapi/tl_search_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_emojis_gen.go b/tdapi/tl_search_emojis_gen.go index 4d4627b632..01d9aa01a8 100644 --- a/tdapi/tl_search_emojis_gen.go +++ b/tdapi/tl_search_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_file_downloads_gen.go b/tdapi/tl_search_file_downloads_gen.go index 4f040d8024..5f046e8485 100644 --- a/tdapi/tl_search_file_downloads_gen.go +++ b/tdapi/tl_search_file_downloads_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_hashtags_gen.go b/tdapi/tl_search_hashtags_gen.go index 6bdb18aef1..5466dbbb02 100644 --- a/tdapi/tl_search_hashtags_gen.go +++ b/tdapi/tl_search_hashtags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_installed_sticker_sets_gen.go b/tdapi/tl_search_installed_sticker_sets_gen.go index 6f8d631eab..c8bb41cd4e 100644 --- a/tdapi/tl_search_installed_sticker_sets_gen.go +++ b/tdapi/tl_search_installed_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_messages_filter_gen.go b/tdapi/tl_search_messages_filter_gen.go index 8ce308a7ea..1ef86a3bbb 100644 --- a/tdapi/tl_search_messages_filter_gen.go +++ b/tdapi/tl_search_messages_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_messages_gen.go b/tdapi/tl_search_messages_gen.go index a46b2a1e86..3fe0a24ee8 100644 --- a/tdapi/tl_search_messages_gen.go +++ b/tdapi/tl_search_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_outgoing_document_messages_gen.go b/tdapi/tl_search_outgoing_document_messages_gen.go index a2c9551590..c1d9ab8ff2 100644 --- a/tdapi/tl_search_outgoing_document_messages_gen.go +++ b/tdapi/tl_search_outgoing_document_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_public_chat_gen.go b/tdapi/tl_search_public_chat_gen.go index c48484030b..6a291ecd4b 100644 --- a/tdapi/tl_search_public_chat_gen.go +++ b/tdapi/tl_search_public_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_public_chats_gen.go b/tdapi/tl_search_public_chats_gen.go index 097331b9be..deae75a8a1 100644 --- a/tdapi/tl_search_public_chats_gen.go +++ b/tdapi/tl_search_public_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_public_messages_by_tag_gen.go b/tdapi/tl_search_public_messages_by_tag_gen.go index c57578c86a..2c9722c07a 100644 --- a/tdapi/tl_search_public_messages_by_tag_gen.go +++ b/tdapi/tl_search_public_messages_by_tag_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_public_stories_by_location_gen.go b/tdapi/tl_search_public_stories_by_location_gen.go index fb5435e827..d1aa9cc485 100644 --- a/tdapi/tl_search_public_stories_by_location_gen.go +++ b/tdapi/tl_search_public_stories_by_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_public_stories_by_tag_gen.go b/tdapi/tl_search_public_stories_by_tag_gen.go index 534442e5ad..46fc6cda39 100644 --- a/tdapi/tl_search_public_stories_by_tag_gen.go +++ b/tdapi/tl_search_public_stories_by_tag_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_public_stories_by_venue_gen.go b/tdapi/tl_search_public_stories_by_venue_gen.go index 184e89085c..b469b6b51e 100644 --- a/tdapi/tl_search_public_stories_by_venue_gen.go +++ b/tdapi/tl_search_public_stories_by_venue_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_quote_gen.go b/tdapi/tl_search_quote_gen.go index db0523069b..916b13fb1a 100644 --- a/tdapi/tl_search_quote_gen.go +++ b/tdapi/tl_search_quote_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_recently_found_chats_gen.go b/tdapi/tl_search_recently_found_chats_gen.go index 2d1e8b42bf..59bc4d0d11 100644 --- a/tdapi/tl_search_recently_found_chats_gen.go +++ b/tdapi/tl_search_recently_found_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_saved_messages_gen.go b/tdapi/tl_search_saved_messages_gen.go index 84c5a66545..a86e2f7723 100644 --- a/tdapi/tl_search_saved_messages_gen.go +++ b/tdapi/tl_search_saved_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_secret_messages_gen.go b/tdapi/tl_search_secret_messages_gen.go index 33a14a47d1..6230cbbe5c 100644 --- a/tdapi/tl_search_secret_messages_gen.go +++ b/tdapi/tl_search_secret_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_sticker_set_gen.go b/tdapi/tl_search_sticker_set_gen.go index 7a72d535fd..9687433f19 100644 --- a/tdapi/tl_search_sticker_set_gen.go +++ b/tdapi/tl_search_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_sticker_sets_gen.go b/tdapi/tl_search_sticker_sets_gen.go index 0823e42077..056de65fb2 100644 --- a/tdapi/tl_search_sticker_sets_gen.go +++ b/tdapi/tl_search_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_stickers_gen.go b/tdapi/tl_search_stickers_gen.go index 0246498fee..8be50483b0 100644 --- a/tdapi/tl_search_stickers_gen.go +++ b/tdapi/tl_search_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_strings_by_prefix_gen.go b/tdapi/tl_search_strings_by_prefix_gen.go index 9731eee6c8..54631fda87 100644 --- a/tdapi/tl_search_strings_by_prefix_gen.go +++ b/tdapi/tl_search_strings_by_prefix_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_user_by_phone_number_gen.go b/tdapi/tl_search_user_by_phone_number_gen.go index 26e83d4469..12d004d709 100644 --- a/tdapi/tl_search_user_by_phone_number_gen.go +++ b/tdapi/tl_search_user_by_phone_number_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_user_by_token_gen.go b/tdapi/tl_search_user_by_token_gen.go index 931752b574..25da1c1373 100644 --- a/tdapi/tl_search_user_by_token_gen.go +++ b/tdapi/tl_search_user_by_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_search_web_app_gen.go b/tdapi/tl_search_web_app_gen.go index 595fe121b5..c9a8da154e 100644 --- a/tdapi/tl_search_web_app_gen.go +++ b/tdapi/tl_search_web_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_seconds_gen.go b/tdapi/tl_seconds_gen.go index d1d0352cc8..34d62b8873 100644 --- a/tdapi/tl_seconds_gen.go +++ b/tdapi/tl_seconds_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_secret_chat_gen.go b/tdapi/tl_secret_chat_gen.go index 0d921111c0..9fbbc2341a 100644 --- a/tdapi/tl_secret_chat_gen.go +++ b/tdapi/tl_secret_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_secret_chat_state_gen.go b/tdapi/tl_secret_chat_state_gen.go index 4357216724..a8fbf2b669 100644 --- a/tdapi/tl_secret_chat_state_gen.go +++ b/tdapi/tl_secret_chat_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sell_gift_gen.go b/tdapi/tl_sell_gift_gen.go index aff2beee9a..c2c64234b3 100644 --- a/tdapi/tl_sell_gift_gen.go +++ b/tdapi/tl_sell_gift_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_authentication_firebase_sms_gen.go b/tdapi/tl_send_authentication_firebase_sms_gen.go index b825564652..eb2968c668 100644 --- a/tdapi/tl_send_authentication_firebase_sms_gen.go +++ b/tdapi/tl_send_authentication_firebase_sms_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_bot_start_message_gen.go b/tdapi/tl_send_bot_start_message_gen.go index 707138aa14..4c7f83e0b4 100644 --- a/tdapi/tl_send_bot_start_message_gen.go +++ b/tdapi/tl_send_bot_start_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_business_message_album_gen.go b/tdapi/tl_send_business_message_album_gen.go index 958d75eff2..7d521f01af 100644 --- a/tdapi/tl_send_business_message_album_gen.go +++ b/tdapi/tl_send_business_message_album_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_business_message_gen.go b/tdapi/tl_send_business_message_gen.go index 10ea3f00be..937be1beef 100644 --- a/tdapi/tl_send_business_message_gen.go +++ b/tdapi/tl_send_business_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_call_debug_information_gen.go b/tdapi/tl_send_call_debug_information_gen.go index 453738212a..f3bb43d39b 100644 --- a/tdapi/tl_send_call_debug_information_gen.go +++ b/tdapi/tl_send_call_debug_information_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_call_log_gen.go b/tdapi/tl_send_call_log_gen.go index ee0bf4482b..ff78ff1888 100644 --- a/tdapi/tl_send_call_log_gen.go +++ b/tdapi/tl_send_call_log_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_call_rating_gen.go b/tdapi/tl_send_call_rating_gen.go index fbb80a5b6e..2177977303 100644 --- a/tdapi/tl_send_call_rating_gen.go +++ b/tdapi/tl_send_call_rating_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_call_signaling_data_gen.go b/tdapi/tl_send_call_signaling_data_gen.go index 02919d5d7b..3df3c1003f 100644 --- a/tdapi/tl_send_call_signaling_data_gen.go +++ b/tdapi/tl_send_call_signaling_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_chat_action_gen.go b/tdapi/tl_send_chat_action_gen.go index 9737cb3b16..18c7d7ad9a 100644 --- a/tdapi/tl_send_chat_action_gen.go +++ b/tdapi/tl_send_chat_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_custom_request_gen.go b/tdapi/tl_send_custom_request_gen.go index eb07c846f7..878a14edcd 100644 --- a/tdapi/tl_send_custom_request_gen.go +++ b/tdapi/tl_send_custom_request_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_email_address_verification_code_gen.go b/tdapi/tl_send_email_address_verification_code_gen.go index 859234c4ad..7640ba8eeb 100644 --- a/tdapi/tl_send_email_address_verification_code_gen.go +++ b/tdapi/tl_send_email_address_verification_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_gift_gen.go b/tdapi/tl_send_gift_gen.go index bd9cb88ee8..9dd2f3fd90 100644 --- a/tdapi/tl_send_gift_gen.go +++ b/tdapi/tl_send_gift_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_inline_query_result_message_gen.go b/tdapi/tl_send_inline_query_result_message_gen.go index b6bc302e21..36f6b07129 100644 --- a/tdapi/tl_send_inline_query_result_message_gen.go +++ b/tdapi/tl_send_inline_query_result_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_message_album_gen.go b/tdapi/tl_send_message_album_gen.go index d95c000fb7..66f6a40efe 100644 --- a/tdapi/tl_send_message_album_gen.go +++ b/tdapi/tl_send_message_album_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_message_gen.go b/tdapi/tl_send_message_gen.go index e1ab95588a..ad6ab7c239 100644 --- a/tdapi/tl_send_message_gen.go +++ b/tdapi/tl_send_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_passport_authorization_form_gen.go b/tdapi/tl_send_passport_authorization_form_gen.go index 78fbe33864..7690cd6cee 100644 --- a/tdapi/tl_send_passport_authorization_form_gen.go +++ b/tdapi/tl_send_passport_authorization_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_payment_form_gen.go b/tdapi/tl_send_payment_form_gen.go index ded748dd72..600ea559b3 100644 --- a/tdapi/tl_send_payment_form_gen.go +++ b/tdapi/tl_send_payment_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_phone_number_code_gen.go b/tdapi/tl_send_phone_number_code_gen.go index bb968ca317..433e5daa17 100644 --- a/tdapi/tl_send_phone_number_code_gen.go +++ b/tdapi/tl_send_phone_number_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_phone_number_firebase_sms_gen.go b/tdapi/tl_send_phone_number_firebase_sms_gen.go index 9a2d1c43ed..0366bf62fb 100644 --- a/tdapi/tl_send_phone_number_firebase_sms_gen.go +++ b/tdapi/tl_send_phone_number_firebase_sms_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_quick_reply_shortcut_messages_gen.go b/tdapi/tl_send_quick_reply_shortcut_messages_gen.go index 1702a4ed6d..cd9007956c 100644 --- a/tdapi/tl_send_quick_reply_shortcut_messages_gen.go +++ b/tdapi/tl_send_quick_reply_shortcut_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_story_gen.go b/tdapi/tl_send_story_gen.go index e40f65af35..56f2572220 100644 --- a/tdapi/tl_send_story_gen.go +++ b/tdapi/tl_send_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_web_app_custom_request_gen.go b/tdapi/tl_send_web_app_custom_request_gen.go index 08b206792b..86478d583d 100644 --- a/tdapi/tl_send_web_app_custom_request_gen.go +++ b/tdapi/tl_send_web_app_custom_request_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_send_web_app_data_gen.go b/tdapi/tl_send_web_app_data_gen.go index 95a9165f07..8e4b25fada 100644 --- a/tdapi/tl_send_web_app_data_gen.go +++ b/tdapi/tl_send_web_app_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sent_web_app_message_gen.go b/tdapi/tl_sent_web_app_message_gen.go index 122ea35d3c..63d7a4ee38 100644 --- a/tdapi/tl_sent_web_app_message_gen.go +++ b/tdapi/tl_sent_web_app_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_session_gen.go b/tdapi/tl_session_gen.go index 6e4891b981..de47816c8d 100644 --- a/tdapi/tl_session_gen.go +++ b/tdapi/tl_session_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_session_type_gen.go b/tdapi/tl_session_type_gen.go index ac13a2f421..78a1b39ad8 100644 --- a/tdapi/tl_session_type_gen.go +++ b/tdapi/tl_session_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sessions_gen.go b/tdapi/tl_sessions_gen.go index 545e016b4a..f004580a01 100644 --- a/tdapi/tl_sessions_gen.go +++ b/tdapi/tl_sessions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_accent_color_gen.go b/tdapi/tl_set_accent_color_gen.go index 85e1186ad2..901a3b03d7 100644 --- a/tdapi/tl_set_accent_color_gen.go +++ b/tdapi/tl_set_accent_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_account_ttl_gen.go b/tdapi/tl_set_account_ttl_gen.go index 37e5ecf659..ebff538737 100644 --- a/tdapi/tl_set_account_ttl_gen.go +++ b/tdapi/tl_set_account_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_alarm_gen.go b/tdapi/tl_set_alarm_gen.go index 879e3b3d15..50f7beeeac 100644 --- a/tdapi/tl_set_alarm_gen.go +++ b/tdapi/tl_set_alarm_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_application_verification_token_gen.go b/tdapi/tl_set_application_verification_token_gen.go index 29c255efab..141fa7455e 100644 --- a/tdapi/tl_set_application_verification_token_gen.go +++ b/tdapi/tl_set_application_verification_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_archive_chat_list_settings_gen.go b/tdapi/tl_set_archive_chat_list_settings_gen.go index 32d3aa7897..a547d79c8f 100644 --- a/tdapi/tl_set_archive_chat_list_settings_gen.go +++ b/tdapi/tl_set_archive_chat_list_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_authentication_email_address_gen.go b/tdapi/tl_set_authentication_email_address_gen.go index 9b1436f708..57af50d550 100644 --- a/tdapi/tl_set_authentication_email_address_gen.go +++ b/tdapi/tl_set_authentication_email_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_authentication_phone_number_gen.go b/tdapi/tl_set_authentication_phone_number_gen.go index 49c5f6f4c0..d5e2fea747 100644 --- a/tdapi/tl_set_authentication_phone_number_gen.go +++ b/tdapi/tl_set_authentication_phone_number_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_auto_download_settings_gen.go b/tdapi/tl_set_auto_download_settings_gen.go index 6e5ac2953e..70bee260f1 100644 --- a/tdapi/tl_set_auto_download_settings_gen.go +++ b/tdapi/tl_set_auto_download_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_autosave_settings_gen.go b/tdapi/tl_set_autosave_settings_gen.go index 19a970ebf4..8a823c8063 100644 --- a/tdapi/tl_set_autosave_settings_gen.go +++ b/tdapi/tl_set_autosave_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_bio_gen.go b/tdapi/tl_set_bio_gen.go index 1c0ea761fb..63e1f3751d 100644 --- a/tdapi/tl_set_bio_gen.go +++ b/tdapi/tl_set_bio_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_birthdate_gen.go b/tdapi/tl_set_birthdate_gen.go index 579ecea941..6ae6e5eab6 100644 --- a/tdapi/tl_set_birthdate_gen.go +++ b/tdapi/tl_set_birthdate_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_bot_info_description_gen.go b/tdapi/tl_set_bot_info_description_gen.go index 485ec0fbd6..82c7f71d94 100644 --- a/tdapi/tl_set_bot_info_description_gen.go +++ b/tdapi/tl_set_bot_info_description_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_bot_info_short_description_gen.go b/tdapi/tl_set_bot_info_short_description_gen.go index bae1773f9e..e64ce6602a 100644 --- a/tdapi/tl_set_bot_info_short_description_gen.go +++ b/tdapi/tl_set_bot_info_short_description_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_bot_name_gen.go b/tdapi/tl_set_bot_name_gen.go index fd2c321d09..8b7aa0cbf0 100644 --- a/tdapi/tl_set_bot_name_gen.go +++ b/tdapi/tl_set_bot_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_bot_profile_photo_gen.go b/tdapi/tl_set_bot_profile_photo_gen.go index 4868cbc0cc..40c745b460 100644 --- a/tdapi/tl_set_bot_profile_photo_gen.go +++ b/tdapi/tl_set_bot_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_bot_updates_status_gen.go b/tdapi/tl_set_bot_updates_status_gen.go index 6c6f2eb679..703b8c190c 100644 --- a/tdapi/tl_set_bot_updates_status_gen.go +++ b/tdapi/tl_set_bot_updates_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_business_away_message_settings_gen.go b/tdapi/tl_set_business_away_message_settings_gen.go index 56935fe07a..43d9c6fe53 100644 --- a/tdapi/tl_set_business_away_message_settings_gen.go +++ b/tdapi/tl_set_business_away_message_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_business_connected_bot_gen.go b/tdapi/tl_set_business_connected_bot_gen.go index 160a81c820..c62250c68a 100644 --- a/tdapi/tl_set_business_connected_bot_gen.go +++ b/tdapi/tl_set_business_connected_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_business_greeting_message_settings_gen.go b/tdapi/tl_set_business_greeting_message_settings_gen.go index 6a62003b97..f833fdd0cc 100644 --- a/tdapi/tl_set_business_greeting_message_settings_gen.go +++ b/tdapi/tl_set_business_greeting_message_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_business_location_gen.go b/tdapi/tl_set_business_location_gen.go index 8ead2b27ca..147229e965 100644 --- a/tdapi/tl_set_business_location_gen.go +++ b/tdapi/tl_set_business_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_business_message_is_pinned_gen.go b/tdapi/tl_set_business_message_is_pinned_gen.go index a7e4fa457b..e2a0572c0c 100644 --- a/tdapi/tl_set_business_message_is_pinned_gen.go +++ b/tdapi/tl_set_business_message_is_pinned_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_business_opening_hours_gen.go b/tdapi/tl_set_business_opening_hours_gen.go index 2eb28db473..3e982f210d 100644 --- a/tdapi/tl_set_business_opening_hours_gen.go +++ b/tdapi/tl_set_business_opening_hours_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_business_start_page_gen.go b/tdapi/tl_set_business_start_page_gen.go index 0adae643f4..538852296d 100644 --- a/tdapi/tl_set_business_start_page_gen.go +++ b/tdapi/tl_set_business_start_page_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_accent_color_gen.go b/tdapi/tl_set_chat_accent_color_gen.go index 0c9f2ef86e..2e6211f832 100644 --- a/tdapi/tl_set_chat_accent_color_gen.go +++ b/tdapi/tl_set_chat_accent_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_active_stories_list_gen.go b/tdapi/tl_set_chat_active_stories_list_gen.go index 4aa2d7cb01..31d8286c87 100644 --- a/tdapi/tl_set_chat_active_stories_list_gen.go +++ b/tdapi/tl_set_chat_active_stories_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_available_reactions_gen.go b/tdapi/tl_set_chat_available_reactions_gen.go index bbd527942f..6ba6775c32 100644 --- a/tdapi/tl_set_chat_available_reactions_gen.go +++ b/tdapi/tl_set_chat_available_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_background_gen.go b/tdapi/tl_set_chat_background_gen.go index e46b4f64dd..6b7829aeb0 100644 --- a/tdapi/tl_set_chat_background_gen.go +++ b/tdapi/tl_set_chat_background_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_client_data_gen.go b/tdapi/tl_set_chat_client_data_gen.go index 6c072254db..5a9e5a6ca7 100644 --- a/tdapi/tl_set_chat_client_data_gen.go +++ b/tdapi/tl_set_chat_client_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_description_gen.go b/tdapi/tl_set_chat_description_gen.go index 4616e506eb..6fd9eb8a9b 100644 --- a/tdapi/tl_set_chat_description_gen.go +++ b/tdapi/tl_set_chat_description_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_discussion_group_gen.go b/tdapi/tl_set_chat_discussion_group_gen.go index 8b984e1b85..c7a75b3690 100644 --- a/tdapi/tl_set_chat_discussion_group_gen.go +++ b/tdapi/tl_set_chat_discussion_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_draft_message_gen.go b/tdapi/tl_set_chat_draft_message_gen.go index 3fb1ca3a98..0c4e34f35c 100644 --- a/tdapi/tl_set_chat_draft_message_gen.go +++ b/tdapi/tl_set_chat_draft_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_emoji_status_gen.go b/tdapi/tl_set_chat_emoji_status_gen.go index 19d05dec34..237ea8ebfd 100644 --- a/tdapi/tl_set_chat_emoji_status_gen.go +++ b/tdapi/tl_set_chat_emoji_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_location_gen.go b/tdapi/tl_set_chat_location_gen.go index 52de051664..d6ed412d5d 100644 --- a/tdapi/tl_set_chat_location_gen.go +++ b/tdapi/tl_set_chat_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_member_status_gen.go b/tdapi/tl_set_chat_member_status_gen.go index a4af4ef09c..f686f35efd 100644 --- a/tdapi/tl_set_chat_member_status_gen.go +++ b/tdapi/tl_set_chat_member_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_message_auto_delete_time_gen.go b/tdapi/tl_set_chat_message_auto_delete_time_gen.go index 5e74c0c641..a35f9e4986 100644 --- a/tdapi/tl_set_chat_message_auto_delete_time_gen.go +++ b/tdapi/tl_set_chat_message_auto_delete_time_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_message_sender_gen.go b/tdapi/tl_set_chat_message_sender_gen.go index eede8e84f5..56e228a2b8 100644 --- a/tdapi/tl_set_chat_message_sender_gen.go +++ b/tdapi/tl_set_chat_message_sender_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_notification_settings_gen.go b/tdapi/tl_set_chat_notification_settings_gen.go index d937b307df..fa837085e1 100644 --- a/tdapi/tl_set_chat_notification_settings_gen.go +++ b/tdapi/tl_set_chat_notification_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_permissions_gen.go b/tdapi/tl_set_chat_permissions_gen.go index 5a44e4e0a2..964fda24f2 100644 --- a/tdapi/tl_set_chat_permissions_gen.go +++ b/tdapi/tl_set_chat_permissions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_photo_gen.go b/tdapi/tl_set_chat_photo_gen.go index 87a1e98349..c1ceccb3c9 100644 --- a/tdapi/tl_set_chat_photo_gen.go +++ b/tdapi/tl_set_chat_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_pinned_stories_gen.go b/tdapi/tl_set_chat_pinned_stories_gen.go index ae19b5313d..687be4eb2f 100644 --- a/tdapi/tl_set_chat_pinned_stories_gen.go +++ b/tdapi/tl_set_chat_pinned_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_profile_accent_color_gen.go b/tdapi/tl_set_chat_profile_accent_color_gen.go index 153486d581..091019a413 100644 --- a/tdapi/tl_set_chat_profile_accent_color_gen.go +++ b/tdapi/tl_set_chat_profile_accent_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_slow_mode_delay_gen.go b/tdapi/tl_set_chat_slow_mode_delay_gen.go index 305a66d091..988baacf40 100644 --- a/tdapi/tl_set_chat_slow_mode_delay_gen.go +++ b/tdapi/tl_set_chat_slow_mode_delay_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_theme_gen.go b/tdapi/tl_set_chat_theme_gen.go index 94545a7941..1befb5a7dc 100644 --- a/tdapi/tl_set_chat_theme_gen.go +++ b/tdapi/tl_set_chat_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_chat_title_gen.go b/tdapi/tl_set_chat_title_gen.go index 77b9ec9eeb..31508875f7 100644 --- a/tdapi/tl_set_chat_title_gen.go +++ b/tdapi/tl_set_chat_title_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_close_friends_gen.go b/tdapi/tl_set_close_friends_gen.go index 7c72a75c10..0133907a08 100644 --- a/tdapi/tl_set_close_friends_gen.go +++ b/tdapi/tl_set_close_friends_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_commands_gen.go b/tdapi/tl_set_commands_gen.go index 64fe6ac09a..bc2e9f89b4 100644 --- a/tdapi/tl_set_commands_gen.go +++ b/tdapi/tl_set_commands_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_custom_emoji_sticker_set_thumbnail_gen.go b/tdapi/tl_set_custom_emoji_sticker_set_thumbnail_gen.go index eba3bfab23..eb0c159a19 100644 --- a/tdapi/tl_set_custom_emoji_sticker_set_thumbnail_gen.go +++ b/tdapi/tl_set_custom_emoji_sticker_set_thumbnail_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_custom_language_pack_gen.go b/tdapi/tl_set_custom_language_pack_gen.go index 48cfb6b203..cd94ddb798 100644 --- a/tdapi/tl_set_custom_language_pack_gen.go +++ b/tdapi/tl_set_custom_language_pack_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_custom_language_pack_string_gen.go b/tdapi/tl_set_custom_language_pack_string_gen.go index 15ad0fce95..b84754ce6b 100644 --- a/tdapi/tl_set_custom_language_pack_string_gen.go +++ b/tdapi/tl_set_custom_language_pack_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_database_encryption_key_gen.go b/tdapi/tl_set_database_encryption_key_gen.go index 083c51f038..076ea7ade2 100644 --- a/tdapi/tl_set_database_encryption_key_gen.go +++ b/tdapi/tl_set_database_encryption_key_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_default_background_gen.go b/tdapi/tl_set_default_background_gen.go index 57a485300b..770c946d73 100644 --- a/tdapi/tl_set_default_background_gen.go +++ b/tdapi/tl_set_default_background_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_default_channel_administrator_rights_gen.go b/tdapi/tl_set_default_channel_administrator_rights_gen.go index 94429c9761..29777b7138 100644 --- a/tdapi/tl_set_default_channel_administrator_rights_gen.go +++ b/tdapi/tl_set_default_channel_administrator_rights_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_default_group_administrator_rights_gen.go b/tdapi/tl_set_default_group_administrator_rights_gen.go index 98fa809244..04fc0c5fea 100644 --- a/tdapi/tl_set_default_group_administrator_rights_gen.go +++ b/tdapi/tl_set_default_group_administrator_rights_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_default_message_auto_delete_time_gen.go b/tdapi/tl_set_default_message_auto_delete_time_gen.go index 31cd279bf7..7b71706dcb 100644 --- a/tdapi/tl_set_default_message_auto_delete_time_gen.go +++ b/tdapi/tl_set_default_message_auto_delete_time_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_default_reaction_type_gen.go b/tdapi/tl_set_default_reaction_type_gen.go index 90e2e3019d..0d179bfe6e 100644 --- a/tdapi/tl_set_default_reaction_type_gen.go +++ b/tdapi/tl_set_default_reaction_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_emoji_status_gen.go b/tdapi/tl_set_emoji_status_gen.go index 99e76c83b6..418712d5a4 100644 --- a/tdapi/tl_set_emoji_status_gen.go +++ b/tdapi/tl_set_emoji_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_file_generation_progress_gen.go b/tdapi/tl_set_file_generation_progress_gen.go index 113f6f8c1d..8ffd150352 100644 --- a/tdapi/tl_set_file_generation_progress_gen.go +++ b/tdapi/tl_set_file_generation_progress_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_forum_topic_notification_settings_gen.go b/tdapi/tl_set_forum_topic_notification_settings_gen.go index 3859222748..7bdf058536 100644 --- a/tdapi/tl_set_forum_topic_notification_settings_gen.go +++ b/tdapi/tl_set_forum_topic_notification_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_game_score_gen.go b/tdapi/tl_set_game_score_gen.go index 3dc049ddee..a3ba76f9a5 100644 --- a/tdapi/tl_set_game_score_gen.go +++ b/tdapi/tl_set_game_score_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_group_call_participant_is_speaking_gen.go b/tdapi/tl_set_group_call_participant_is_speaking_gen.go index 330cd83077..df1daa49bb 100644 --- a/tdapi/tl_set_group_call_participant_is_speaking_gen.go +++ b/tdapi/tl_set_group_call_participant_is_speaking_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_group_call_participant_volume_level_gen.go b/tdapi/tl_set_group_call_participant_volume_level_gen.go index 66a1522d2d..7dca6843a2 100644 --- a/tdapi/tl_set_group_call_participant_volume_level_gen.go +++ b/tdapi/tl_set_group_call_participant_volume_level_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_group_call_title_gen.go b/tdapi/tl_set_group_call_title_gen.go index 145d6ec9b1..87b6a09bc9 100644 --- a/tdapi/tl_set_group_call_title_gen.go +++ b/tdapi/tl_set_group_call_title_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_inactive_session_ttl_gen.go b/tdapi/tl_set_inactive_session_ttl_gen.go index 8ee9a3d3bd..6907600875 100644 --- a/tdapi/tl_set_inactive_session_ttl_gen.go +++ b/tdapi/tl_set_inactive_session_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_inline_game_score_gen.go b/tdapi/tl_set_inline_game_score_gen.go index e83c87821a..7fb986564e 100644 --- a/tdapi/tl_set_inline_game_score_gen.go +++ b/tdapi/tl_set_inline_game_score_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_log_stream_gen.go b/tdapi/tl_set_log_stream_gen.go index 6f7fc622ff..a1882c6aff 100644 --- a/tdapi/tl_set_log_stream_gen.go +++ b/tdapi/tl_set_log_stream_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_log_tag_verbosity_level_gen.go b/tdapi/tl_set_log_tag_verbosity_level_gen.go index d14619c9d9..3d0caa3473 100644 --- a/tdapi/tl_set_log_tag_verbosity_level_gen.go +++ b/tdapi/tl_set_log_tag_verbosity_level_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_log_verbosity_level_gen.go b/tdapi/tl_set_log_verbosity_level_gen.go index 3ca7914761..b48a035ae5 100644 --- a/tdapi/tl_set_log_verbosity_level_gen.go +++ b/tdapi/tl_set_log_verbosity_level_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_login_email_address_gen.go b/tdapi/tl_set_login_email_address_gen.go index 080ce5a741..1020387606 100644 --- a/tdapi/tl_set_login_email_address_gen.go +++ b/tdapi/tl_set_login_email_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_menu_button_gen.go b/tdapi/tl_set_menu_button_gen.go index 5ac5a46296..705f1306b4 100644 --- a/tdapi/tl_set_menu_button_gen.go +++ b/tdapi/tl_set_menu_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_message_fact_check_gen.go b/tdapi/tl_set_message_fact_check_gen.go index 9bb8ac1c87..e0f85e8d5b 100644 --- a/tdapi/tl_set_message_fact_check_gen.go +++ b/tdapi/tl_set_message_fact_check_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_message_reactions_gen.go b/tdapi/tl_set_message_reactions_gen.go index 628532b2ee..23a00f65a7 100644 --- a/tdapi/tl_set_message_reactions_gen.go +++ b/tdapi/tl_set_message_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_message_sender_block_list_gen.go b/tdapi/tl_set_message_sender_block_list_gen.go index 70aea03f56..272e991b94 100644 --- a/tdapi/tl_set_message_sender_block_list_gen.go +++ b/tdapi/tl_set_message_sender_block_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_name_gen.go b/tdapi/tl_set_name_gen.go index 79f09c8c36..51dd6cfb6e 100644 --- a/tdapi/tl_set_name_gen.go +++ b/tdapi/tl_set_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_network_type_gen.go b/tdapi/tl_set_network_type_gen.go index 2456d862b8..0561822860 100644 --- a/tdapi/tl_set_network_type_gen.go +++ b/tdapi/tl_set_network_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_new_chat_privacy_settings_gen.go b/tdapi/tl_set_new_chat_privacy_settings_gen.go index 32c0fa8abd..6332bd9555 100644 --- a/tdapi/tl_set_new_chat_privacy_settings_gen.go +++ b/tdapi/tl_set_new_chat_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_option_gen.go b/tdapi/tl_set_option_gen.go index b7d5b0a20a..ab45ce4a0c 100644 --- a/tdapi/tl_set_option_gen.go +++ b/tdapi/tl_set_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_passport_element_errors_gen.go b/tdapi/tl_set_passport_element_errors_gen.go index c81b5cce9d..42223863ac 100644 --- a/tdapi/tl_set_passport_element_errors_gen.go +++ b/tdapi/tl_set_passport_element_errors_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_passport_element_gen.go b/tdapi/tl_set_passport_element_gen.go index 41955c4228..e9c144a896 100644 --- a/tdapi/tl_set_passport_element_gen.go +++ b/tdapi/tl_set_passport_element_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_password_gen.go b/tdapi/tl_set_password_gen.go index a6ad3bac69..c76991d06e 100644 --- a/tdapi/tl_set_password_gen.go +++ b/tdapi/tl_set_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_personal_chat_gen.go b/tdapi/tl_set_personal_chat_gen.go index 13ca70fa79..3817f2ac80 100644 --- a/tdapi/tl_set_personal_chat_gen.go +++ b/tdapi/tl_set_personal_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_pinned_chats_gen.go b/tdapi/tl_set_pinned_chats_gen.go index cb1219d10d..162338802a 100644 --- a/tdapi/tl_set_pinned_chats_gen.go +++ b/tdapi/tl_set_pinned_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_pinned_forum_topics_gen.go b/tdapi/tl_set_pinned_forum_topics_gen.go index c1fe64f4da..341c28e1cc 100644 --- a/tdapi/tl_set_pinned_forum_topics_gen.go +++ b/tdapi/tl_set_pinned_forum_topics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_pinned_saved_messages_topics_gen.go b/tdapi/tl_set_pinned_saved_messages_topics_gen.go index 55f28297fa..b8df5d9db9 100644 --- a/tdapi/tl_set_pinned_saved_messages_topics_gen.go +++ b/tdapi/tl_set_pinned_saved_messages_topics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_poll_answer_gen.go b/tdapi/tl_set_poll_answer_gen.go index 375de6ceab..a773581629 100644 --- a/tdapi/tl_set_poll_answer_gen.go +++ b/tdapi/tl_set_poll_answer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_profile_accent_color_gen.go b/tdapi/tl_set_profile_accent_color_gen.go index d5cc0217b2..e2fb27ab97 100644 --- a/tdapi/tl_set_profile_accent_color_gen.go +++ b/tdapi/tl_set_profile_accent_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_profile_photo_gen.go b/tdapi/tl_set_profile_photo_gen.go index 5515e7903d..3201994515 100644 --- a/tdapi/tl_set_profile_photo_gen.go +++ b/tdapi/tl_set_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_quick_reply_shortcut_name_gen.go b/tdapi/tl_set_quick_reply_shortcut_name_gen.go index 803fc5fbef..56f2e880c3 100644 --- a/tdapi/tl_set_quick_reply_shortcut_name_gen.go +++ b/tdapi/tl_set_quick_reply_shortcut_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_reaction_notification_settings_gen.go b/tdapi/tl_set_reaction_notification_settings_gen.go index c756196089..8e08d4e42f 100644 --- a/tdapi/tl_set_reaction_notification_settings_gen.go +++ b/tdapi/tl_set_reaction_notification_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_read_date_privacy_settings_gen.go b/tdapi/tl_set_read_date_privacy_settings_gen.go index a4f5564076..30c2c244d0 100644 --- a/tdapi/tl_set_read_date_privacy_settings_gen.go +++ b/tdapi/tl_set_read_date_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_recovery_email_address_gen.go b/tdapi/tl_set_recovery_email_address_gen.go index cfe0e06fa6..c4ca6598f9 100644 --- a/tdapi/tl_set_recovery_email_address_gen.go +++ b/tdapi/tl_set_recovery_email_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_saved_messages_tag_label_gen.go b/tdapi/tl_set_saved_messages_tag_label_gen.go index c32418fee9..9a007f8820 100644 --- a/tdapi/tl_set_saved_messages_tag_label_gen.go +++ b/tdapi/tl_set_saved_messages_tag_label_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_scope_notification_settings_gen.go b/tdapi/tl_set_scope_notification_settings_gen.go index 430c3fea72..97f2e11ab2 100644 --- a/tdapi/tl_set_scope_notification_settings_gen.go +++ b/tdapi/tl_set_scope_notification_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_sticker_emojis_gen.go b/tdapi/tl_set_sticker_emojis_gen.go index 0bd107fc8f..51dcebf47c 100644 --- a/tdapi/tl_set_sticker_emojis_gen.go +++ b/tdapi/tl_set_sticker_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_sticker_keywords_gen.go b/tdapi/tl_set_sticker_keywords_gen.go index 84ab8a481f..1fd91cfd6a 100644 --- a/tdapi/tl_set_sticker_keywords_gen.go +++ b/tdapi/tl_set_sticker_keywords_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_sticker_mask_position_gen.go b/tdapi/tl_set_sticker_mask_position_gen.go index ae4444a5b4..d24ba1f6cb 100644 --- a/tdapi/tl_set_sticker_mask_position_gen.go +++ b/tdapi/tl_set_sticker_mask_position_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_sticker_position_in_set_gen.go b/tdapi/tl_set_sticker_position_in_set_gen.go index aa03b8f089..fac45553ac 100644 --- a/tdapi/tl_set_sticker_position_in_set_gen.go +++ b/tdapi/tl_set_sticker_position_in_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_sticker_set_thumbnail_gen.go b/tdapi/tl_set_sticker_set_thumbnail_gen.go index 14c15ebe97..4c79535351 100644 --- a/tdapi/tl_set_sticker_set_thumbnail_gen.go +++ b/tdapi/tl_set_sticker_set_thumbnail_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_sticker_set_title_gen.go b/tdapi/tl_set_sticker_set_title_gen.go index 65ab68fc79..bc92e7d289 100644 --- a/tdapi/tl_set_sticker_set_title_gen.go +++ b/tdapi/tl_set_sticker_set_title_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_story_privacy_settings_gen.go b/tdapi/tl_set_story_privacy_settings_gen.go index 4f86c7b446..22f4320e51 100644 --- a/tdapi/tl_set_story_privacy_settings_gen.go +++ b/tdapi/tl_set_story_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_story_reaction_gen.go b/tdapi/tl_set_story_reaction_gen.go index 5f81b3070a..eb6763cf0e 100644 --- a/tdapi/tl_set_story_reaction_gen.go +++ b/tdapi/tl_set_story_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_supergroup_custom_emoji_sticker_set_gen.go b/tdapi/tl_set_supergroup_custom_emoji_sticker_set_gen.go index 2648c909c2..4dcb6ad008 100644 --- a/tdapi/tl_set_supergroup_custom_emoji_sticker_set_gen.go +++ b/tdapi/tl_set_supergroup_custom_emoji_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_supergroup_sticker_set_gen.go b/tdapi/tl_set_supergroup_sticker_set_gen.go index b1c28a80ee..0a0a6a8b80 100644 --- a/tdapi/tl_set_supergroup_sticker_set_gen.go +++ b/tdapi/tl_set_supergroup_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_supergroup_unrestrict_boost_count_gen.go b/tdapi/tl_set_supergroup_unrestrict_boost_count_gen.go index 55e9c95437..05a3f51d33 100644 --- a/tdapi/tl_set_supergroup_unrestrict_boost_count_gen.go +++ b/tdapi/tl_set_supergroup_unrestrict_boost_count_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_supergroup_username_gen.go b/tdapi/tl_set_supergroup_username_gen.go index 22a693aec6..9a687fafbf 100644 --- a/tdapi/tl_set_supergroup_username_gen.go +++ b/tdapi/tl_set_supergroup_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_tdlib_parameters_gen.go b/tdapi/tl_set_tdlib_parameters_gen.go index adc1c08999..111a29622a 100644 --- a/tdapi/tl_set_tdlib_parameters_gen.go +++ b/tdapi/tl_set_tdlib_parameters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_user_emoji_status_gen.go b/tdapi/tl_set_user_emoji_status_gen.go index a433d92a31..eab099fafa 100644 --- a/tdapi/tl_set_user_emoji_status_gen.go +++ b/tdapi/tl_set_user_emoji_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_user_personal_profile_photo_gen.go b/tdapi/tl_set_user_personal_profile_photo_gen.go index 9622287010..efe55581e7 100644 --- a/tdapi/tl_set_user_personal_profile_photo_gen.go +++ b/tdapi/tl_set_user_personal_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_user_privacy_setting_rules_gen.go b/tdapi/tl_set_user_privacy_setting_rules_gen.go index 920c93ac5d..ec66ecbac2 100644 --- a/tdapi/tl_set_user_privacy_setting_rules_gen.go +++ b/tdapi/tl_set_user_privacy_setting_rules_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_user_support_info_gen.go b/tdapi/tl_set_user_support_info_gen.go index 3d9014b3f1..48abcf6ca5 100644 --- a/tdapi/tl_set_user_support_info_gen.go +++ b/tdapi/tl_set_user_support_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_username_gen.go b/tdapi/tl_set_username_gen.go index 4c9b80f30a..884c020cef 100644 --- a/tdapi/tl_set_username_gen.go +++ b/tdapi/tl_set_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_set_video_chat_default_participant_gen.go b/tdapi/tl_set_video_chat_default_participant_gen.go index 05c7a717f4..23b80c9dd6 100644 --- a/tdapi/tl_set_video_chat_default_participant_gen.go +++ b/tdapi/tl_set_video_chat_default_participant_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_share_chat_with_bot_gen.go b/tdapi/tl_share_chat_with_bot_gen.go index 5a6c8235cb..81b9dfe505 100644 --- a/tdapi/tl_share_chat_with_bot_gen.go +++ b/tdapi/tl_share_chat_with_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_share_phone_number_gen.go b/tdapi/tl_share_phone_number_gen.go index bec943fef5..0f2f336d98 100644 --- a/tdapi/tl_share_phone_number_gen.go +++ b/tdapi/tl_share_phone_number_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_share_users_with_bot_gen.go b/tdapi/tl_share_users_with_bot_gen.go index 0d4deafdea..99e947b583 100644 --- a/tdapi/tl_share_users_with_bot_gen.go +++ b/tdapi/tl_share_users_with_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_shared_chat_gen.go b/tdapi/tl_shared_chat_gen.go index 652911e94f..adca3d71ea 100644 --- a/tdapi/tl_shared_chat_gen.go +++ b/tdapi/tl_shared_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_shared_user_gen.go b/tdapi/tl_shared_user_gen.go index 95a8d889cc..7dc75802cd 100644 --- a/tdapi/tl_shared_user_gen.go +++ b/tdapi/tl_shared_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_shipping_option_gen.go b/tdapi/tl_shipping_option_gen.go index d8ebfa9c2a..e42d38fac6 100644 --- a/tdapi/tl_shipping_option_gen.go +++ b/tdapi/tl_shipping_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_speech_recognition_result_gen.go b/tdapi/tl_speech_recognition_result_gen.go index 5d7a7e93e8..0ae22c674a 100644 --- a/tdapi/tl_speech_recognition_result_gen.go +++ b/tdapi/tl_speech_recognition_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sponsored_message_gen.go b/tdapi/tl_sponsored_message_gen.go index 695d3b2f91..554be0a55c 100644 --- a/tdapi/tl_sponsored_message_gen.go +++ b/tdapi/tl_sponsored_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sponsored_messages_gen.go b/tdapi/tl_sponsored_messages_gen.go index 9daa76305c..d3c1924794 100644 --- a/tdapi/tl_sponsored_messages_gen.go +++ b/tdapi/tl_sponsored_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_giveaway_payment_option_gen.go b/tdapi/tl_star_giveaway_payment_option_gen.go index 548d181c7a..a2403668aa 100644 --- a/tdapi/tl_star_giveaway_payment_option_gen.go +++ b/tdapi/tl_star_giveaway_payment_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_giveaway_payment_options_gen.go b/tdapi/tl_star_giveaway_payment_options_gen.go index d5370a28a3..4fce8c5bdc 100644 --- a/tdapi/tl_star_giveaway_payment_options_gen.go +++ b/tdapi/tl_star_giveaway_payment_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_giveaway_winner_option_gen.go b/tdapi/tl_star_giveaway_winner_option_gen.go index 5caddadd02..cad154942d 100644 --- a/tdapi/tl_star_giveaway_winner_option_gen.go +++ b/tdapi/tl_star_giveaway_winner_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_payment_option_gen.go b/tdapi/tl_star_payment_option_gen.go index 9f1062a3b2..dbb6fe2c39 100644 --- a/tdapi/tl_star_payment_option_gen.go +++ b/tdapi/tl_star_payment_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_payment_options_gen.go b/tdapi/tl_star_payment_options_gen.go index 7520930a91..2416dd04d9 100644 --- a/tdapi/tl_star_payment_options_gen.go +++ b/tdapi/tl_star_payment_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_revenue_statistics_gen.go b/tdapi/tl_star_revenue_statistics_gen.go index fc0f9e9dd3..e1f59b9bdb 100644 --- a/tdapi/tl_star_revenue_statistics_gen.go +++ b/tdapi/tl_star_revenue_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_revenue_status_gen.go b/tdapi/tl_star_revenue_status_gen.go index 3423111342..7def49bf75 100644 --- a/tdapi/tl_star_revenue_status_gen.go +++ b/tdapi/tl_star_revenue_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_subscription_gen.go b/tdapi/tl_star_subscription_gen.go index 9d9e6058ea..c10279d35c 100644 --- a/tdapi/tl_star_subscription_gen.go +++ b/tdapi/tl_star_subscription_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_subscription_pricing_gen.go b/tdapi/tl_star_subscription_pricing_gen.go index 4e239a17be..97dc292288 100644 --- a/tdapi/tl_star_subscription_pricing_gen.go +++ b/tdapi/tl_star_subscription_pricing_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_subscription_type_gen.go b/tdapi/tl_star_subscription_type_gen.go index 4f6fabb0d5..5e64fd496c 100644 --- a/tdapi/tl_star_subscription_type_gen.go +++ b/tdapi/tl_star_subscription_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_subscriptions_gen.go b/tdapi/tl_star_subscriptions_gen.go index 3c0cb64a13..f51dc3e6b6 100644 --- a/tdapi/tl_star_subscriptions_gen.go +++ b/tdapi/tl_star_subscriptions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_transaction_direction_gen.go b/tdapi/tl_star_transaction_direction_gen.go index 107efba87f..d91a8344f1 100644 --- a/tdapi/tl_star_transaction_direction_gen.go +++ b/tdapi/tl_star_transaction_direction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_transaction_gen.go b/tdapi/tl_star_transaction_gen.go index b6302edc12..99edd3d744 100644 --- a/tdapi/tl_star_transaction_gen.go +++ b/tdapi/tl_star_transaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_transaction_partner_gen.go b/tdapi/tl_star_transaction_partner_gen.go index bbfeca96a4..29d5128723 100644 --- a/tdapi/tl_star_transaction_partner_gen.go +++ b/tdapi/tl_star_transaction_partner_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_star_transactions_gen.go b/tdapi/tl_star_transactions_gen.go index abc135536f..bd94d1a9ee 100644 --- a/tdapi/tl_star_transactions_gen.go +++ b/tdapi/tl_star_transactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_start_group_call_recording_gen.go b/tdapi/tl_start_group_call_recording_gen.go index 78ad9a5970..420b86490c 100644 --- a/tdapi/tl_start_group_call_recording_gen.go +++ b/tdapi/tl_start_group_call_recording_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_start_group_call_screen_sharing_gen.go b/tdapi/tl_start_group_call_screen_sharing_gen.go index be638d96ba..6e78c0b7b5 100644 --- a/tdapi/tl_start_group_call_screen_sharing_gen.go +++ b/tdapi/tl_start_group_call_screen_sharing_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_start_scheduled_group_call_gen.go b/tdapi/tl_start_scheduled_group_call_gen.go index a5e221faae..5cb7136acd 100644 --- a/tdapi/tl_start_scheduled_group_call_gen.go +++ b/tdapi/tl_start_scheduled_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_statistical_graph_gen.go b/tdapi/tl_statistical_graph_gen.go index 59d5024466..c69c28ca27 100644 --- a/tdapi/tl_statistical_graph_gen.go +++ b/tdapi/tl_statistical_graph_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_statistical_value_gen.go b/tdapi/tl_statistical_value_gen.go index b9711abaf8..91ee9342c5 100644 --- a/tdapi/tl_statistical_value_gen.go +++ b/tdapi/tl_statistical_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sticker_format_gen.go b/tdapi/tl_sticker_format_gen.go index 7be9555995..909b50424b 100644 --- a/tdapi/tl_sticker_format_gen.go +++ b/tdapi/tl_sticker_format_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sticker_full_type_gen.go b/tdapi/tl_sticker_full_type_gen.go index bd807cb4cd..cf969be9b4 100644 --- a/tdapi/tl_sticker_full_type_gen.go +++ b/tdapi/tl_sticker_full_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sticker_gen.go b/tdapi/tl_sticker_gen.go index 53937c6178..93989c902a 100644 --- a/tdapi/tl_sticker_gen.go +++ b/tdapi/tl_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sticker_set_gen.go b/tdapi/tl_sticker_set_gen.go index d85e229529..eb8932ebea 100644 --- a/tdapi/tl_sticker_set_gen.go +++ b/tdapi/tl_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sticker_set_info_gen.go b/tdapi/tl_sticker_set_info_gen.go index 95d4dd9fc2..a1c2e98a1a 100644 --- a/tdapi/tl_sticker_set_info_gen.go +++ b/tdapi/tl_sticker_set_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sticker_sets_gen.go b/tdapi/tl_sticker_sets_gen.go index 37f6df37ba..59558d626c 100644 --- a/tdapi/tl_sticker_sets_gen.go +++ b/tdapi/tl_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_sticker_type_gen.go b/tdapi/tl_sticker_type_gen.go index eed936eed8..5b60b0c83c 100644 --- a/tdapi/tl_sticker_type_gen.go +++ b/tdapi/tl_sticker_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_stickers_gen.go b/tdapi/tl_stickers_gen.go index 55d88b2160..7013e32d1b 100644 --- a/tdapi/tl_stickers_gen.go +++ b/tdapi/tl_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_stop_business_poll_gen.go b/tdapi/tl_stop_business_poll_gen.go index 8d1a0aa8ad..92b3df633b 100644 --- a/tdapi/tl_stop_business_poll_gen.go +++ b/tdapi/tl_stop_business_poll_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_stop_poll_gen.go b/tdapi/tl_stop_poll_gen.go index 91de2c8203..05beb3e474 100644 --- a/tdapi/tl_stop_poll_gen.go +++ b/tdapi/tl_stop_poll_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_storage_statistics_by_chat_gen.go b/tdapi/tl_storage_statistics_by_chat_gen.go index 6b021b617a..746caf301d 100644 --- a/tdapi/tl_storage_statistics_by_chat_gen.go +++ b/tdapi/tl_storage_statistics_by_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_storage_statistics_by_file_type_gen.go b/tdapi/tl_storage_statistics_by_file_type_gen.go index fa4f66ece5..75110f0307 100644 --- a/tdapi/tl_storage_statistics_by_file_type_gen.go +++ b/tdapi/tl_storage_statistics_by_file_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_storage_statistics_fast_gen.go b/tdapi/tl_storage_statistics_fast_gen.go index d24396032f..583e6e1450 100644 --- a/tdapi/tl_storage_statistics_fast_gen.go +++ b/tdapi/tl_storage_statistics_fast_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_storage_statistics_gen.go b/tdapi/tl_storage_statistics_gen.go index 4163667fbd..f0e40f9f34 100644 --- a/tdapi/tl_storage_statistics_gen.go +++ b/tdapi/tl_storage_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_store_payment_purpose_gen.go b/tdapi/tl_store_payment_purpose_gen.go index 242abcc79c..3e0aeb2633 100644 --- a/tdapi/tl_store_payment_purpose_gen.go +++ b/tdapi/tl_store_payment_purpose_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_stories_gen.go b/tdapi/tl_stories_gen.go index d0b1d71d87..a9d7a75e29 100644 --- a/tdapi/tl_stories_gen.go +++ b/tdapi/tl_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_area_gen.go b/tdapi/tl_story_area_gen.go index 1c75b1401b..7541fd35b5 100644 --- a/tdapi/tl_story_area_gen.go +++ b/tdapi/tl_story_area_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_area_position_gen.go b/tdapi/tl_story_area_position_gen.go index d7e2427ad5..351b01608c 100644 --- a/tdapi/tl_story_area_position_gen.go +++ b/tdapi/tl_story_area_position_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_area_type_gen.go b/tdapi/tl_story_area_type_gen.go index c025d7c9f6..3bf715c8ee 100644 --- a/tdapi/tl_story_area_type_gen.go +++ b/tdapi/tl_story_area_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_content_gen.go b/tdapi/tl_story_content_gen.go index cc6900b915..d39b63cff3 100644 --- a/tdapi/tl_story_content_gen.go +++ b/tdapi/tl_story_content_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_full_id_gen.go b/tdapi/tl_story_full_id_gen.go index f9be2d646a..bf0620d3a8 100644 --- a/tdapi/tl_story_full_id_gen.go +++ b/tdapi/tl_story_full_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_gen.go b/tdapi/tl_story_gen.go index fb01ca5315..50936e4f77 100644 --- a/tdapi/tl_story_gen.go +++ b/tdapi/tl_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_info_gen.go b/tdapi/tl_story_info_gen.go index 6c56e200e8..3a4b03bda7 100644 --- a/tdapi/tl_story_info_gen.go +++ b/tdapi/tl_story_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_interaction_gen.go b/tdapi/tl_story_interaction_gen.go index 0feb3172bf..5481daa7d8 100644 --- a/tdapi/tl_story_interaction_gen.go +++ b/tdapi/tl_story_interaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_interaction_info_gen.go b/tdapi/tl_story_interaction_info_gen.go index 6bad4be235..9df94f111c 100644 --- a/tdapi/tl_story_interaction_info_gen.go +++ b/tdapi/tl_story_interaction_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_interaction_type_gen.go b/tdapi/tl_story_interaction_type_gen.go index 9b2c966eef..e86255a70e 100644 --- a/tdapi/tl_story_interaction_type_gen.go +++ b/tdapi/tl_story_interaction_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_interactions_gen.go b/tdapi/tl_story_interactions_gen.go index 9944bb73f5..b471cbf62f 100644 --- a/tdapi/tl_story_interactions_gen.go +++ b/tdapi/tl_story_interactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_list_gen.go b/tdapi/tl_story_list_gen.go index 4c4e4affc8..49f59b265a 100644 --- a/tdapi/tl_story_list_gen.go +++ b/tdapi/tl_story_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_origin_gen.go b/tdapi/tl_story_origin_gen.go index 5b434f35f6..7921c94256 100644 --- a/tdapi/tl_story_origin_gen.go +++ b/tdapi/tl_story_origin_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_privacy_settings_gen.go b/tdapi/tl_story_privacy_settings_gen.go index 83cefa78c0..fe2d7731a2 100644 --- a/tdapi/tl_story_privacy_settings_gen.go +++ b/tdapi/tl_story_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_repost_info_gen.go b/tdapi/tl_story_repost_info_gen.go index a46f4df49d..68c2c6eafc 100644 --- a/tdapi/tl_story_repost_info_gen.go +++ b/tdapi/tl_story_repost_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_statistics_gen.go b/tdapi/tl_story_statistics_gen.go index 634c4b8dd7..7770c59a1f 100644 --- a/tdapi/tl_story_statistics_gen.go +++ b/tdapi/tl_story_statistics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_story_video_gen.go b/tdapi/tl_story_video_gen.go index 14ef9163cd..fc0f25dc78 100644 --- a/tdapi/tl_story_video_gen.go +++ b/tdapi/tl_story_video_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_string_gen.go b/tdapi/tl_string_gen.go index a6ec3bbbea..52ea7ced03 100644 --- a/tdapi/tl_string_gen.go +++ b/tdapi/tl_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_suggest_user_profile_photo_gen.go b/tdapi/tl_suggest_user_profile_photo_gen.go index e69e67e794..08078e5219 100644 --- a/tdapi/tl_suggest_user_profile_photo_gen.go +++ b/tdapi/tl_suggest_user_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_suggested_action_gen.go b/tdapi/tl_suggested_action_gen.go index 121a14738e..9ab8f7565b 100644 --- a/tdapi/tl_suggested_action_gen.go +++ b/tdapi/tl_suggested_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_supergroup_full_info_gen.go b/tdapi/tl_supergroup_full_info_gen.go index 85b1c89e88..7939790ad2 100644 --- a/tdapi/tl_supergroup_full_info_gen.go +++ b/tdapi/tl_supergroup_full_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_supergroup_gen.go b/tdapi/tl_supergroup_gen.go index daae444437..cdfe4f74da 100644 --- a/tdapi/tl_supergroup_gen.go +++ b/tdapi/tl_supergroup_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_supergroup_members_filter_gen.go b/tdapi/tl_supergroup_members_filter_gen.go index 16e9323e97..d1c277ad33 100644 --- a/tdapi/tl_supergroup_members_filter_gen.go +++ b/tdapi/tl_supergroup_members_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_synchronize_language_pack_gen.go b/tdapi/tl_synchronize_language_pack_gen.go index da0de97ea3..a6f6b9dcff 100644 --- a/tdapi/tl_synchronize_language_pack_gen.go +++ b/tdapi/tl_synchronize_language_pack_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_t_me_url_gen.go b/tdapi/tl_t_me_url_gen.go index cf3baf691b..5cef7442a2 100644 --- a/tdapi/tl_t_me_url_gen.go +++ b/tdapi/tl_t_me_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_t_me_url_type_gen.go b/tdapi/tl_t_me_url_type_gen.go index 8837c240fa..7819cca330 100644 --- a/tdapi/tl_t_me_url_type_gen.go +++ b/tdapi/tl_t_me_url_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_t_me_urls_gen.go b/tdapi/tl_t_me_urls_gen.go index c58175f1d6..5a6caaa0b8 100644 --- a/tdapi/tl_t_me_urls_gen.go +++ b/tdapi/tl_t_me_urls_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_target_chat_gen.go b/tdapi/tl_target_chat_gen.go index c333bf9ea3..2ca17ffd5b 100644 --- a/tdapi/tl_target_chat_gen.go +++ b/tdapi/tl_target_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_target_chat_types_gen.go b/tdapi/tl_target_chat_types_gen.go index 86da589f70..81f29c5957 100644 --- a/tdapi/tl_target_chat_types_gen.go +++ b/tdapi/tl_target_chat_types_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_telegram_payment_purpose_gen.go b/tdapi/tl_telegram_payment_purpose_gen.go index 3c963be40d..a07dcbb782 100644 --- a/tdapi/tl_telegram_payment_purpose_gen.go +++ b/tdapi/tl_telegram_payment_purpose_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_temporary_password_state_gen.go b/tdapi/tl_temporary_password_state_gen.go index 2201b276ed..67ca3d7c8e 100644 --- a/tdapi/tl_temporary_password_state_gen.go +++ b/tdapi/tl_temporary_password_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_terminate_all_other_sessions_gen.go b/tdapi/tl_terminate_all_other_sessions_gen.go index 849debe57b..d298412c3b 100644 --- a/tdapi/tl_terminate_all_other_sessions_gen.go +++ b/tdapi/tl_terminate_all_other_sessions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_terminate_session_gen.go b/tdapi/tl_terminate_session_gen.go index 8199b68bd8..35ac1360ac 100644 --- a/tdapi/tl_terminate_session_gen.go +++ b/tdapi/tl_terminate_session_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_terms_of_service_gen.go b/tdapi/tl_terms_of_service_gen.go index 71116c2731..5e9b9f3910 100644 --- a/tdapi/tl_terms_of_service_gen.go +++ b/tdapi/tl_terms_of_service_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_bytes_gen.go b/tdapi/tl_test_bytes_gen.go index 8cb0284402..fa590b559a 100644 --- a/tdapi/tl_test_bytes_gen.go +++ b/tdapi/tl_test_bytes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_call_bytes_gen.go b/tdapi/tl_test_call_bytes_gen.go index 57dc5bd8d8..a3f50415af 100644 --- a/tdapi/tl_test_call_bytes_gen.go +++ b/tdapi/tl_test_call_bytes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_call_empty_gen.go b/tdapi/tl_test_call_empty_gen.go index be96eaaf9e..2fb56127e4 100644 --- a/tdapi/tl_test_call_empty_gen.go +++ b/tdapi/tl_test_call_empty_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_call_string_gen.go b/tdapi/tl_test_call_string_gen.go index e7e384605d..f34c23b7c8 100644 --- a/tdapi/tl_test_call_string_gen.go +++ b/tdapi/tl_test_call_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_call_vector_int_gen.go b/tdapi/tl_test_call_vector_int_gen.go index e62f44d00c..e24efd3429 100644 --- a/tdapi/tl_test_call_vector_int_gen.go +++ b/tdapi/tl_test_call_vector_int_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_call_vector_int_object_gen.go b/tdapi/tl_test_call_vector_int_object_gen.go index fb9345e84e..0a1aacc5dd 100644 --- a/tdapi/tl_test_call_vector_int_object_gen.go +++ b/tdapi/tl_test_call_vector_int_object_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_call_vector_string_gen.go b/tdapi/tl_test_call_vector_string_gen.go index ade36c4eaa..ae805e4c1b 100644 --- a/tdapi/tl_test_call_vector_string_gen.go +++ b/tdapi/tl_test_call_vector_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_call_vector_string_object_gen.go b/tdapi/tl_test_call_vector_string_object_gen.go index d397107f86..8f3656f9ac 100644 --- a/tdapi/tl_test_call_vector_string_object_gen.go +++ b/tdapi/tl_test_call_vector_string_object_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_get_difference_gen.go b/tdapi/tl_test_get_difference_gen.go index 32ea6bd2a3..aa6746f1a2 100644 --- a/tdapi/tl_test_get_difference_gen.go +++ b/tdapi/tl_test_get_difference_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_int_gen.go b/tdapi/tl_test_int_gen.go index 555c8ab4a4..8be54d1c7c 100644 --- a/tdapi/tl_test_int_gen.go +++ b/tdapi/tl_test_int_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_network_gen.go b/tdapi/tl_test_network_gen.go index a493902cff..fcb21cb74f 100644 --- a/tdapi/tl_test_network_gen.go +++ b/tdapi/tl_test_network_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_proxy_gen.go b/tdapi/tl_test_proxy_gen.go index 13bbecf0f3..d53ba559c5 100644 --- a/tdapi/tl_test_proxy_gen.go +++ b/tdapi/tl_test_proxy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_return_error_gen.go b/tdapi/tl_test_return_error_gen.go index f315c96a82..4e7d6d2d20 100644 --- a/tdapi/tl_test_return_error_gen.go +++ b/tdapi/tl_test_return_error_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_square_int_gen.go b/tdapi/tl_test_square_int_gen.go index d30e691f52..dd5fcd356a 100644 --- a/tdapi/tl_test_square_int_gen.go +++ b/tdapi/tl_test_square_int_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_string_gen.go b/tdapi/tl_test_string_gen.go index d99c47afda..05dcbe9d22 100644 --- a/tdapi/tl_test_string_gen.go +++ b/tdapi/tl_test_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_use_update_gen.go b/tdapi/tl_test_use_update_gen.go index df4b7b9e23..2784246b86 100644 --- a/tdapi/tl_test_use_update_gen.go +++ b/tdapi/tl_test_use_update_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_vector_int_gen.go b/tdapi/tl_test_vector_int_gen.go index 8683bb64d1..c2378506ff 100644 --- a/tdapi/tl_test_vector_int_gen.go +++ b/tdapi/tl_test_vector_int_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_vector_int_object_gen.go b/tdapi/tl_test_vector_int_object_gen.go index 9542815e95..b04397adb8 100644 --- a/tdapi/tl_test_vector_int_object_gen.go +++ b/tdapi/tl_test_vector_int_object_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_vector_string_gen.go b/tdapi/tl_test_vector_string_gen.go index a276f55ff0..fbee690149 100644 --- a/tdapi/tl_test_vector_string_gen.go +++ b/tdapi/tl_test_vector_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_test_vector_string_object_gen.go b/tdapi/tl_test_vector_string_object_gen.go index 1e923c6f57..822278e995 100644 --- a/tdapi/tl_test_vector_string_object_gen.go +++ b/tdapi/tl_test_vector_string_object_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_text_entities_gen.go b/tdapi/tl_text_entities_gen.go index c5e234107c..985996d587 100644 --- a/tdapi/tl_text_entities_gen.go +++ b/tdapi/tl_text_entities_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_text_entity_gen.go b/tdapi/tl_text_entity_gen.go index f53b8f2e2d..69a98626c2 100644 --- a/tdapi/tl_text_entity_gen.go +++ b/tdapi/tl_text_entity_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_text_entity_type_gen.go b/tdapi/tl_text_entity_type_gen.go index 9b05758458..9abdb067b1 100644 --- a/tdapi/tl_text_entity_type_gen.go +++ b/tdapi/tl_text_entity_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_text_gen.go b/tdapi/tl_text_gen.go index 80a81403f8..2c82fd9032 100644 --- a/tdapi/tl_text_gen.go +++ b/tdapi/tl_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_text_parse_mode_gen.go b/tdapi/tl_text_parse_mode_gen.go index 3a58a357b4..09483fd8eb 100644 --- a/tdapi/tl_text_parse_mode_gen.go +++ b/tdapi/tl_text_parse_mode_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_text_quote_gen.go b/tdapi/tl_text_quote_gen.go index 6f7afc9ec3..293979efe5 100644 --- a/tdapi/tl_text_quote_gen.go +++ b/tdapi/tl_text_quote_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_theme_parameters_gen.go b/tdapi/tl_theme_parameters_gen.go index 8af141d154..615ede3888 100644 --- a/tdapi/tl_theme_parameters_gen.go +++ b/tdapi/tl_theme_parameters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_theme_settings_gen.go b/tdapi/tl_theme_settings_gen.go index fcaa31647b..1e5828180a 100644 --- a/tdapi/tl_theme_settings_gen.go +++ b/tdapi/tl_theme_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_thumbnail_format_gen.go b/tdapi/tl_thumbnail_format_gen.go index ea9e302811..345c737818 100644 --- a/tdapi/tl_thumbnail_format_gen.go +++ b/tdapi/tl_thumbnail_format_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_thumbnail_gen.go b/tdapi/tl_thumbnail_gen.go index a340f6f0b7..86f63f233d 100644 --- a/tdapi/tl_thumbnail_gen.go +++ b/tdapi/tl_thumbnail_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_time_zone_gen.go b/tdapi/tl_time_zone_gen.go index 50442d6c19..710fcfbbd2 100644 --- a/tdapi/tl_time_zone_gen.go +++ b/tdapi/tl_time_zone_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_time_zones_gen.go b/tdapi/tl_time_zones_gen.go index e7ce81187c..91f3905243 100644 --- a/tdapi/tl_time_zones_gen.go +++ b/tdapi/tl_time_zones_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_all_downloads_are_paused_gen.go b/tdapi/tl_toggle_all_downloads_are_paused_gen.go index f67d6fa038..5bfd8d41f9 100644 --- a/tdapi/tl_toggle_all_downloads_are_paused_gen.go +++ b/tdapi/tl_toggle_all_downloads_are_paused_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_bot_can_manage_emoji_status_gen.go b/tdapi/tl_toggle_bot_can_manage_emoji_status_gen.go index 1ca529f338..2a455dfdbd 100644 --- a/tdapi/tl_toggle_bot_can_manage_emoji_status_gen.go +++ b/tdapi/tl_toggle_bot_can_manage_emoji_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_bot_is_added_to_attachment_menu_gen.go b/tdapi/tl_toggle_bot_is_added_to_attachment_menu_gen.go index b752fd956d..526e19f844 100644 --- a/tdapi/tl_toggle_bot_is_added_to_attachment_menu_gen.go +++ b/tdapi/tl_toggle_bot_is_added_to_attachment_menu_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_bot_username_is_active_gen.go b/tdapi/tl_toggle_bot_username_is_active_gen.go index 0a0f698c60..918f3c5788 100644 --- a/tdapi/tl_toggle_bot_username_is_active_gen.go +++ b/tdapi/tl_toggle_bot_username_is_active_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_business_connected_bot_chat_is_paused_gen.go b/tdapi/tl_toggle_business_connected_bot_chat_is_paused_gen.go index 137867a37e..f89f1e4e39 100644 --- a/tdapi/tl_toggle_business_connected_bot_chat_is_paused_gen.go +++ b/tdapi/tl_toggle_business_connected_bot_chat_is_paused_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_chat_default_disable_notification_gen.go b/tdapi/tl_toggle_chat_default_disable_notification_gen.go index d255b97602..2b1a14a0a9 100644 --- a/tdapi/tl_toggle_chat_default_disable_notification_gen.go +++ b/tdapi/tl_toggle_chat_default_disable_notification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_chat_folder_tags_gen.go b/tdapi/tl_toggle_chat_folder_tags_gen.go index e61278359d..927bbc2e6e 100644 --- a/tdapi/tl_toggle_chat_folder_tags_gen.go +++ b/tdapi/tl_toggle_chat_folder_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_chat_has_protected_content_gen.go b/tdapi/tl_toggle_chat_has_protected_content_gen.go index a0db569bb6..a3426c5b71 100644 --- a/tdapi/tl_toggle_chat_has_protected_content_gen.go +++ b/tdapi/tl_toggle_chat_has_protected_content_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_chat_is_marked_as_unread_gen.go b/tdapi/tl_toggle_chat_is_marked_as_unread_gen.go index cb88abdcfb..173bfd64a9 100644 --- a/tdapi/tl_toggle_chat_is_marked_as_unread_gen.go +++ b/tdapi/tl_toggle_chat_is_marked_as_unread_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_chat_is_pinned_gen.go b/tdapi/tl_toggle_chat_is_pinned_gen.go index 7756d8f662..2619a2334c 100644 --- a/tdapi/tl_toggle_chat_is_pinned_gen.go +++ b/tdapi/tl_toggle_chat_is_pinned_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_chat_is_translatable_gen.go b/tdapi/tl_toggle_chat_is_translatable_gen.go index e47c71e96a..680d7ee63d 100644 --- a/tdapi/tl_toggle_chat_is_translatable_gen.go +++ b/tdapi/tl_toggle_chat_is_translatable_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_chat_view_as_topics_gen.go b/tdapi/tl_toggle_chat_view_as_topics_gen.go index c4fc61947c..f49056b744 100644 --- a/tdapi/tl_toggle_chat_view_as_topics_gen.go +++ b/tdapi/tl_toggle_chat_view_as_topics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_download_is_paused_gen.go b/tdapi/tl_toggle_download_is_paused_gen.go index 1b35fe5d64..aedd71dc4c 100644 --- a/tdapi/tl_toggle_download_is_paused_gen.go +++ b/tdapi/tl_toggle_download_is_paused_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_forum_topic_is_closed_gen.go b/tdapi/tl_toggle_forum_topic_is_closed_gen.go index 8a564ddb50..8eff3dfdc3 100644 --- a/tdapi/tl_toggle_forum_topic_is_closed_gen.go +++ b/tdapi/tl_toggle_forum_topic_is_closed_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_forum_topic_is_pinned_gen.go b/tdapi/tl_toggle_forum_topic_is_pinned_gen.go index c5406d0d1b..042626badd 100644 --- a/tdapi/tl_toggle_forum_topic_is_pinned_gen.go +++ b/tdapi/tl_toggle_forum_topic_is_pinned_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_general_forum_topic_is_hidden_gen.go b/tdapi/tl_toggle_general_forum_topic_is_hidden_gen.go index b33cfcea21..1e5bbc26f2 100644 --- a/tdapi/tl_toggle_general_forum_topic_is_hidden_gen.go +++ b/tdapi/tl_toggle_general_forum_topic_is_hidden_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_gift_is_saved_gen.go b/tdapi/tl_toggle_gift_is_saved_gen.go index cd0baf24f7..d51a5b6f18 100644 --- a/tdapi/tl_toggle_gift_is_saved_gen.go +++ b/tdapi/tl_toggle_gift_is_saved_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_group_call_enabled_start_notification_gen.go b/tdapi/tl_toggle_group_call_enabled_start_notification_gen.go index e1ae15b9e3..5e1f09625d 100644 --- a/tdapi/tl_toggle_group_call_enabled_start_notification_gen.go +++ b/tdapi/tl_toggle_group_call_enabled_start_notification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_group_call_is_my_video_enabled_gen.go b/tdapi/tl_toggle_group_call_is_my_video_enabled_gen.go index e174956c17..4b65a72b01 100644 --- a/tdapi/tl_toggle_group_call_is_my_video_enabled_gen.go +++ b/tdapi/tl_toggle_group_call_is_my_video_enabled_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_group_call_is_my_video_paused_gen.go b/tdapi/tl_toggle_group_call_is_my_video_paused_gen.go index a192312ea4..d8666c5d5d 100644 --- a/tdapi/tl_toggle_group_call_is_my_video_paused_gen.go +++ b/tdapi/tl_toggle_group_call_is_my_video_paused_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_group_call_mute_new_participants_gen.go b/tdapi/tl_toggle_group_call_mute_new_participants_gen.go index 78f97c25d4..e9d15a2907 100644 --- a/tdapi/tl_toggle_group_call_mute_new_participants_gen.go +++ b/tdapi/tl_toggle_group_call_mute_new_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_group_call_participant_is_hand_raised_gen.go b/tdapi/tl_toggle_group_call_participant_is_hand_raised_gen.go index a7e4009779..c3c359af0d 100644 --- a/tdapi/tl_toggle_group_call_participant_is_hand_raised_gen.go +++ b/tdapi/tl_toggle_group_call_participant_is_hand_raised_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_group_call_participant_is_muted_gen.go b/tdapi/tl_toggle_group_call_participant_is_muted_gen.go index 57d11f8561..bbba902ea0 100644 --- a/tdapi/tl_toggle_group_call_participant_is_muted_gen.go +++ b/tdapi/tl_toggle_group_call_participant_is_muted_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_group_call_screen_sharing_is_paused_gen.go b/tdapi/tl_toggle_group_call_screen_sharing_is_paused_gen.go index 0959c0fed8..e94fb56d9c 100644 --- a/tdapi/tl_toggle_group_call_screen_sharing_is_paused_gen.go +++ b/tdapi/tl_toggle_group_call_screen_sharing_is_paused_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_has_sponsored_messages_enabled_gen.go b/tdapi/tl_toggle_has_sponsored_messages_enabled_gen.go index 5cfe4abb16..fc766a1905 100644 --- a/tdapi/tl_toggle_has_sponsored_messages_enabled_gen.go +++ b/tdapi/tl_toggle_has_sponsored_messages_enabled_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_paid_message_reaction_is_anonymous_gen.go b/tdapi/tl_toggle_paid_message_reaction_is_anonymous_gen.go index a67950ba36..5d25baccae 100644 --- a/tdapi/tl_toggle_paid_message_reaction_is_anonymous_gen.go +++ b/tdapi/tl_toggle_paid_message_reaction_is_anonymous_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_saved_messages_topic_is_pinned_gen.go b/tdapi/tl_toggle_saved_messages_topic_is_pinned_gen.go index 3f931a4ff9..c09134c9ca 100644 --- a/tdapi/tl_toggle_saved_messages_topic_is_pinned_gen.go +++ b/tdapi/tl_toggle_saved_messages_topic_is_pinned_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_session_can_accept_calls_gen.go b/tdapi/tl_toggle_session_can_accept_calls_gen.go index f4261b7def..7e017275c6 100644 --- a/tdapi/tl_toggle_session_can_accept_calls_gen.go +++ b/tdapi/tl_toggle_session_can_accept_calls_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_session_can_accept_secret_chats_gen.go b/tdapi/tl_toggle_session_can_accept_secret_chats_gen.go index 5e2076287d..ba87b5a992 100644 --- a/tdapi/tl_toggle_session_can_accept_secret_chats_gen.go +++ b/tdapi/tl_toggle_session_can_accept_secret_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_story_is_posted_to_chat_page_gen.go b/tdapi/tl_toggle_story_is_posted_to_chat_page_gen.go index e7034ca362..43876bf953 100644 --- a/tdapi/tl_toggle_story_is_posted_to_chat_page_gen.go +++ b/tdapi/tl_toggle_story_is_posted_to_chat_page_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_can_have_sponsored_messages_gen.go b/tdapi/tl_toggle_supergroup_can_have_sponsored_messages_gen.go index c76cd2fed9..a737f97fe4 100644 --- a/tdapi/tl_toggle_supergroup_can_have_sponsored_messages_gen.go +++ b/tdapi/tl_toggle_supergroup_can_have_sponsored_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_has_aggressive_anti_spam_enabled_gen.go b/tdapi/tl_toggle_supergroup_has_aggressive_anti_spam_enabled_gen.go index 416067b006..71de946642 100644 --- a/tdapi/tl_toggle_supergroup_has_aggressive_anti_spam_enabled_gen.go +++ b/tdapi/tl_toggle_supergroup_has_aggressive_anti_spam_enabled_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_has_hidden_members_gen.go b/tdapi/tl_toggle_supergroup_has_hidden_members_gen.go index 21407b461e..b5dff8f5ed 100644 --- a/tdapi/tl_toggle_supergroup_has_hidden_members_gen.go +++ b/tdapi/tl_toggle_supergroup_has_hidden_members_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_is_all_history_available_gen.go b/tdapi/tl_toggle_supergroup_is_all_history_available_gen.go index cc639a4b55..66aeff1f81 100644 --- a/tdapi/tl_toggle_supergroup_is_all_history_available_gen.go +++ b/tdapi/tl_toggle_supergroup_is_all_history_available_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_is_broadcast_group_gen.go b/tdapi/tl_toggle_supergroup_is_broadcast_group_gen.go index 18e7bf9efc..1e333cf25a 100644 --- a/tdapi/tl_toggle_supergroup_is_broadcast_group_gen.go +++ b/tdapi/tl_toggle_supergroup_is_broadcast_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_is_forum_gen.go b/tdapi/tl_toggle_supergroup_is_forum_gen.go index ff4007822d..6da3bbc07a 100644 --- a/tdapi/tl_toggle_supergroup_is_forum_gen.go +++ b/tdapi/tl_toggle_supergroup_is_forum_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_join_by_request_gen.go b/tdapi/tl_toggle_supergroup_join_by_request_gen.go index b2c23ae504..c632acf19e 100644 --- a/tdapi/tl_toggle_supergroup_join_by_request_gen.go +++ b/tdapi/tl_toggle_supergroup_join_by_request_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_join_to_send_messages_gen.go b/tdapi/tl_toggle_supergroup_join_to_send_messages_gen.go index 543de71aec..3902c53bee 100644 --- a/tdapi/tl_toggle_supergroup_join_to_send_messages_gen.go +++ b/tdapi/tl_toggle_supergroup_join_to_send_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_sign_messages_gen.go b/tdapi/tl_toggle_supergroup_sign_messages_gen.go index 7da231f506..bada5d4011 100644 --- a/tdapi/tl_toggle_supergroup_sign_messages_gen.go +++ b/tdapi/tl_toggle_supergroup_sign_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_supergroup_username_is_active_gen.go b/tdapi/tl_toggle_supergroup_username_is_active_gen.go index a6044f7cfd..cd2d9975b6 100644 --- a/tdapi/tl_toggle_supergroup_username_is_active_gen.go +++ b/tdapi/tl_toggle_supergroup_username_is_active_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_toggle_username_is_active_gen.go b/tdapi/tl_toggle_username_is_active_gen.go index f0e97a4be6..7fb6c9fc76 100644 --- a/tdapi/tl_toggle_username_is_active_gen.go +++ b/tdapi/tl_toggle_username_is_active_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_top_chat_category_gen.go b/tdapi/tl_top_chat_category_gen.go index 83a218ac43..c81e2ed8f1 100644 --- a/tdapi/tl_top_chat_category_gen.go +++ b/tdapi/tl_top_chat_category_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_transfer_chat_ownership_gen.go b/tdapi/tl_transfer_chat_ownership_gen.go index b1517fe2be..d06254b14c 100644 --- a/tdapi/tl_transfer_chat_ownership_gen.go +++ b/tdapi/tl_transfer_chat_ownership_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_translate_message_text_gen.go b/tdapi/tl_translate_message_text_gen.go index 6e81cf92be..d289546d2b 100644 --- a/tdapi/tl_translate_message_text_gen.go +++ b/tdapi/tl_translate_message_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_translate_text_gen.go b/tdapi/tl_translate_text_gen.go index eb55ef6764..1fea6d60ff 100644 --- a/tdapi/tl_translate_text_gen.go +++ b/tdapi/tl_translate_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_trending_sticker_sets_gen.go b/tdapi/tl_trending_sticker_sets_gen.go index 72d2d841e5..17bc2acb49 100644 --- a/tdapi/tl_trending_sticker_sets_gen.go +++ b/tdapi/tl_trending_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_unconfirmed_session_gen.go b/tdapi/tl_unconfirmed_session_gen.go index 0c54cee5af..8729c8f89d 100644 --- a/tdapi/tl_unconfirmed_session_gen.go +++ b/tdapi/tl_unconfirmed_session_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_unpin_all_chat_messages_gen.go b/tdapi/tl_unpin_all_chat_messages_gen.go index 9dfbf18f03..c43f946a45 100644 --- a/tdapi/tl_unpin_all_chat_messages_gen.go +++ b/tdapi/tl_unpin_all_chat_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_unpin_all_message_thread_messages_gen.go b/tdapi/tl_unpin_all_message_thread_messages_gen.go index fd15d02f78..2e5cbd9d89 100644 --- a/tdapi/tl_unpin_all_message_thread_messages_gen.go +++ b/tdapi/tl_unpin_all_message_thread_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_unpin_chat_message_gen.go b/tdapi/tl_unpin_chat_message_gen.go index 25bc7a10bb..24240057b0 100644 --- a/tdapi/tl_unpin_chat_message_gen.go +++ b/tdapi/tl_unpin_chat_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_unread_reaction_gen.go b/tdapi/tl_unread_reaction_gen.go index 52b3482d30..93a27f8395 100644 --- a/tdapi/tl_unread_reaction_gen.go +++ b/tdapi/tl_unread_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_update_gen.go b/tdapi/tl_update_gen.go index c004d2a6ae..dca3d29243 100644 --- a/tdapi/tl_update_gen.go +++ b/tdapi/tl_update_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_updates_gen.go b/tdapi/tl_updates_gen.go index cd76002d5e..a6f9e4cd42 100644 --- a/tdapi/tl_updates_gen.go +++ b/tdapi/tl_updates_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_upgrade_basic_group_chat_to_supergroup_chat_gen.go b/tdapi/tl_upgrade_basic_group_chat_to_supergroup_chat_gen.go index 4fddfa0634..989ab420d5 100644 --- a/tdapi/tl_upgrade_basic_group_chat_to_supergroup_chat_gen.go +++ b/tdapi/tl_upgrade_basic_group_chat_to_supergroup_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_upload_sticker_file_gen.go b/tdapi/tl_upload_sticker_file_gen.go index f1eb81debd..20c280f9b8 100644 --- a/tdapi/tl_upload_sticker_file_gen.go +++ b/tdapi/tl_upload_sticker_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_full_info_gen.go b/tdapi/tl_user_full_info_gen.go index 42293eae3c..03f3b3f8fa 100644 --- a/tdapi/tl_user_full_info_gen.go +++ b/tdapi/tl_user_full_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_gen.go b/tdapi/tl_user_gen.go index c952241d4e..c0fc8f00b7 100644 --- a/tdapi/tl_user_gen.go +++ b/tdapi/tl_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_gift_gen.go b/tdapi/tl_user_gift_gen.go index d43ce7f2f9..25c7b2aca2 100644 --- a/tdapi/tl_user_gift_gen.go +++ b/tdapi/tl_user_gift_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_gifts_gen.go b/tdapi/tl_user_gifts_gen.go index 3853ba9f7b..c93159e3d1 100644 --- a/tdapi/tl_user_gifts_gen.go +++ b/tdapi/tl_user_gifts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_link_gen.go b/tdapi/tl_user_link_gen.go index 97ae64fed6..df9a059b9c 100644 --- a/tdapi/tl_user_link_gen.go +++ b/tdapi/tl_user_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_privacy_setting_gen.go b/tdapi/tl_user_privacy_setting_gen.go index ec908f7647..cea43f4ae8 100644 --- a/tdapi/tl_user_privacy_setting_gen.go +++ b/tdapi/tl_user_privacy_setting_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_privacy_setting_rule_gen.go b/tdapi/tl_user_privacy_setting_rule_gen.go index d35ee63c4f..b94ac66121 100644 --- a/tdapi/tl_user_privacy_setting_rule_gen.go +++ b/tdapi/tl_user_privacy_setting_rule_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_privacy_setting_rules_gen.go b/tdapi/tl_user_privacy_setting_rules_gen.go index 99d079f80b..138154322f 100644 --- a/tdapi/tl_user_privacy_setting_rules_gen.go +++ b/tdapi/tl_user_privacy_setting_rules_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_status_gen.go b/tdapi/tl_user_status_gen.go index 181beac784..76efd78724 100644 --- a/tdapi/tl_user_status_gen.go +++ b/tdapi/tl_user_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_support_info_gen.go b/tdapi/tl_user_support_info_gen.go index 76720bf1e0..262da41c3c 100644 --- a/tdapi/tl_user_support_info_gen.go +++ b/tdapi/tl_user_support_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_transaction_purpose_gen.go b/tdapi/tl_user_transaction_purpose_gen.go index 15b9ad4bd2..4cce8a21de 100644 --- a/tdapi/tl_user_transaction_purpose_gen.go +++ b/tdapi/tl_user_transaction_purpose_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_user_type_gen.go b/tdapi/tl_user_type_gen.go index 6477e16f06..0eff07b649 100644 --- a/tdapi/tl_user_type_gen.go +++ b/tdapi/tl_user_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_usernames_gen.go b/tdapi/tl_usernames_gen.go index 240f3ef342..828df61984 100644 --- a/tdapi/tl_usernames_gen.go +++ b/tdapi/tl_usernames_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_users_gen.go b/tdapi/tl_users_gen.go index f8478566ad..f86feb67be 100644 --- a/tdapi/tl_users_gen.go +++ b/tdapi/tl_users_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_validate_order_info_gen.go b/tdapi/tl_validate_order_info_gen.go index 37022be977..bdbabb050a 100644 --- a/tdapi/tl_validate_order_info_gen.go +++ b/tdapi/tl_validate_order_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_validated_order_info_gen.go b/tdapi/tl_validated_order_info_gen.go index 15c15cbf8e..8a85241b27 100644 --- a/tdapi/tl_validated_order_info_gen.go +++ b/tdapi/tl_validated_order_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_vector_path_command_gen.go b/tdapi/tl_vector_path_command_gen.go index 399bfaf058..c5a711383b 100644 --- a/tdapi/tl_vector_path_command_gen.go +++ b/tdapi/tl_vector_path_command_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_venue_gen.go b/tdapi/tl_venue_gen.go index a8ed975aae..ca0d32816d 100644 --- a/tdapi/tl_venue_gen.go +++ b/tdapi/tl_venue_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_video_chat_gen.go b/tdapi/tl_video_chat_gen.go index 0bf1de9c82..c798183200 100644 --- a/tdapi/tl_video_chat_gen.go +++ b/tdapi/tl_video_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_video_gen.go b/tdapi/tl_video_gen.go index e8d8e8993f..75cce66b98 100644 --- a/tdapi/tl_video_gen.go +++ b/tdapi/tl_video_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_video_note_gen.go b/tdapi/tl_video_note_gen.go index 999a6869eb..f48fc28c53 100644 --- a/tdapi/tl_video_note_gen.go +++ b/tdapi/tl_video_note_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_view_messages_gen.go b/tdapi/tl_view_messages_gen.go index 6a643f0af0..efd632cbd2 100644 --- a/tdapi/tl_view_messages_gen.go +++ b/tdapi/tl_view_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_view_premium_feature_gen.go b/tdapi/tl_view_premium_feature_gen.go index f80cb702bd..ce011d5021 100644 --- a/tdapi/tl_view_premium_feature_gen.go +++ b/tdapi/tl_view_premium_feature_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_view_trending_sticker_sets_gen.go b/tdapi/tl_view_trending_sticker_sets_gen.go index ff5eff7d9c..5c9b2bf631 100644 --- a/tdapi/tl_view_trending_sticker_sets_gen.go +++ b/tdapi/tl_view_trending_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_voice_note_gen.go b/tdapi/tl_voice_note_gen.go index 03b5fccfbc..b2e38af203 100644 --- a/tdapi/tl_voice_note_gen.go +++ b/tdapi/tl_voice_note_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_web_app_gen.go b/tdapi/tl_web_app_gen.go index d511eb467d..22476778c4 100644 --- a/tdapi/tl_web_app_gen.go +++ b/tdapi/tl_web_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_web_app_info_gen.go b/tdapi/tl_web_app_info_gen.go index b90a2d4549..7398e6e930 100644 --- a/tdapi/tl_web_app_info_gen.go +++ b/tdapi/tl_web_app_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_web_app_open_mode_gen.go b/tdapi/tl_web_app_open_mode_gen.go index 20eb7578b6..a6ef5c6755 100644 --- a/tdapi/tl_web_app_open_mode_gen.go +++ b/tdapi/tl_web_app_open_mode_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_web_app_open_parameters_gen.go b/tdapi/tl_web_app_open_parameters_gen.go index 62120f0f6b..c6c1bcc990 100644 --- a/tdapi/tl_web_app_open_parameters_gen.go +++ b/tdapi/tl_web_app_open_parameters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_web_page_instant_view_gen.go b/tdapi/tl_web_page_instant_view_gen.go index e340d3a2c0..2725d74055 100644 --- a/tdapi/tl_web_page_instant_view_gen.go +++ b/tdapi/tl_web_page_instant_view_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdapi/tl_write_generated_file_part_gen.go b/tdapi/tl_write_generated_file_part_gen.go index 2e672e927b..26953060f2 100644 --- a/tdapi/tl_write_generated_file_part_gen.go +++ b/tdapi/tl_write_generated_file_part_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdjson/decoder.go b/tdjson/decoder.go index 7807c973fe..202dad0d5b 100644 --- a/tdjson/decoder.go +++ b/tdjson/decoder.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" "github.com/go-faster/jx" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Decoder is a simple wrapper around jx.Decoder to conform TL type system. diff --git a/tdjson/encoder.go b/tdjson/encoder.go index b0791b8829..83e4cbd5d8 100644 --- a/tdjson/encoder.go +++ b/tdjson/encoder.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/jx" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Encoder is a simple wrapper around jx.Encoder to conform TL type system. diff --git a/tdjson/encoder_test.go b/tdjson/encoder_test.go index e43ccd60d9..e18a566df2 100644 --- a/tdjson/encoder_test.go +++ b/tdjson/encoder_test.go @@ -9,9 +9,9 @@ import ( "github.com/go-faster/jx" "github.com/stretchr/testify/require" - "github.com/gotd/td/tdapi" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" + "github.com/beeper/td/tdapi" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" ) func TestEncodeDecode(t *testing.T) { diff --git a/tdp/internal/generate.go b/tdp/internal/generate.go index 2d39f1fdec..731f0827c8 100644 --- a/tdp/internal/generate.go +++ b/tdp/internal/generate.go @@ -1,4 +1,4 @@ // Package internal wraps internal packages for tdp package. package internal -//go:generate go run github.com/gotd/td/cmd/gotdgen --format=true --clean --package schema --target schema --schema _testdata/schema.tl +//go:generate go run github.com/beeper/td/cmd/gotdgen --format=true --clean --package schema --target schema --schema _testdata/schema.tl diff --git a/tdp/internal/schema/tl_client_gen.go b/tdp/internal/schema/tl_client_gen.go index 1037083e08..0db1658a1c 100644 --- a/tdp/internal/schema/tl_client_gen.go +++ b/tdp/internal/schema/tl_client_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdp/internal/schema/tl_config_gen.go b/tdp/internal/schema/tl_config_gen.go index 8f0b34bc0a..69da34a4ee 100644 --- a/tdp/internal/schema/tl_config_gen.go +++ b/tdp/internal/schema/tl_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdp/internal/schema/tl_dc_option_gen.go b/tdp/internal/schema/tl_dc_option_gen.go index de45c2badc..bebdf7d549 100644 --- a/tdp/internal/schema/tl_dc_option_gen.go +++ b/tdp/internal/schema/tl_dc_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdp/internal/schema/tl_registry_gen.go b/tdp/internal/schema/tl_registry_gen.go index c1d3fd00a2..c6372fc4bd 100644 --- a/tdp/internal/schema/tl_registry_gen.go +++ b/tdp/internal/schema/tl_registry_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tdp/tdp_test.go b/tdp/tdp_test.go index 2c992bffba..5399d2da0a 100644 --- a/tdp/tdp_test.go +++ b/tdp/tdp_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tdp/internal/schema" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tdp/internal/schema" ) func TestFormat(t *testing.T) { diff --git a/tdsync/log_group.go b/tdsync/log_group.go index ddf308dec1..4fc26a3012 100644 --- a/tdsync/log_group.go +++ b/tdsync/log_group.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/clock" + "github.com/beeper/td/clock" ) // LogGroup is simple wrapper around CancellableGroup to log task state. diff --git a/tdsync/log_group_test.go b/tdsync/log_group_test.go index 9a55ca6760..3ac3eb82d2 100644 --- a/tdsync/log_group_test.go +++ b/tdsync/log_group_test.go @@ -10,7 +10,7 @@ import ( "go.uber.org/zap/zapcore" "go.uber.org/zap/zaptest" - "github.com/gotd/td/clock" + "github.com/beeper/td/clock" ) func TestLogGroup(t *testing.T) { diff --git a/telegram/auth.go b/telegram/auth.go index 4045d66d0e..763e915ccb 100644 --- a/telegram/auth.go +++ b/telegram/auth.go @@ -1,8 +1,8 @@ package telegram import ( - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/telegram/auth/qrlogin" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/telegram/auth/qrlogin" ) // Auth returns auth client. diff --git a/telegram/auth/auth.go b/telegram/auth/auth.go index ee9b5cd346..369909eb1b 100644 --- a/telegram/auth/auth.go +++ b/telegram/auth/auth.go @@ -2,7 +2,7 @@ package auth import ( - "github.com/gotd/td/tgerr" + "github.com/beeper/td/tgerr" ) // IsKeyUnregistered reports whether err is AUTH_KEY_UNREGISTERED error. diff --git a/telegram/auth/auth_test.go b/telegram/auth/auth_test.go index a887f24f74..a50449af08 100644 --- a/telegram/auth/auth_test.go +++ b/telegram/auth/auth_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) const ( diff --git a/telegram/auth/bot.go b/telegram/auth/bot.go index 2d40481607..8ade7651c6 100644 --- a/telegram/auth/bot.go +++ b/telegram/auth/bot.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Bot performs bot authentication request. diff --git a/telegram/auth/bot_test.go b/telegram/auth/bot_test.go index 323fdf16d2..1cbf71902e 100644 --- a/telegram/auth/bot_test.go +++ b/telegram/auth/bot_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func TestClient_AuthBot(t *testing.T) { diff --git a/telegram/auth/client.go b/telegram/auth/client.go index cd704a71a5..a006ac4491 100644 --- a/telegram/auth/client.go +++ b/telegram/auth/client.go @@ -3,7 +3,7 @@ package auth import ( "io" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Client implements Telegram authentication. diff --git a/telegram/auth/flow.go b/telegram/auth/flow.go index cda0f6c95a..6b79e0d73f 100644 --- a/telegram/auth/flow.go +++ b/telegram/auth/flow.go @@ -10,8 +10,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tg" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tg" ) // NewFlow initializes new authentication flow. diff --git a/telegram/auth/flow_test.go b/telegram/auth/flow_test.go index ae17deea1b..f12bb9f5c8 100644 --- a/telegram/auth/flow_test.go +++ b/telegram/auth/flow_test.go @@ -7,9 +7,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" ) func askCode(code string, err error) auth.CodeAuthenticatorFunc { diff --git a/telegram/auth/password.go b/telegram/auth/password.go index d93f47a1de..e47464340b 100644 --- a/telegram/auth/password.go +++ b/telegram/auth/password.go @@ -7,9 +7,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" - "github.com/gotd/td/crypto/srp" - "github.com/gotd/td/tg" + "github.com/beeper/td/crypto" + "github.com/beeper/td/crypto/srp" + "github.com/beeper/td/tg" ) // PasswordHash computes password hash to log in. diff --git a/telegram/auth/password_example_test.go b/telegram/auth/password_example_test.go index a7b4fd70c8..438e359f09 100644 --- a/telegram/auth/password_example_test.go +++ b/telegram/auth/password_example_test.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/auth" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/auth" ) func ExampleClient_UpdatePassword() { diff --git a/telegram/auth/password_test.go b/telegram/auth/password_test.go index 84c52cc4c2..82a830765e 100644 --- a/telegram/auth/password_test.go +++ b/telegram/auth/password_test.go @@ -7,10 +7,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/bin" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func TestPasswordHash(t *testing.T) { diff --git a/telegram/auth/qrlogin/accept.go b/telegram/auth/qrlogin/accept.go index 9e1bbd0190..abeb97178a 100644 --- a/telegram/auth/qrlogin/accept.go +++ b/telegram/auth/qrlogin/accept.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // AcceptQR accepts given token. diff --git a/telegram/auth/qrlogin/errors.go b/telegram/auth/qrlogin/errors.go index 6a7d017f13..11d4491f88 100644 --- a/telegram/auth/qrlogin/errors.go +++ b/telegram/auth/qrlogin/errors.go @@ -3,7 +3,7 @@ package qrlogin import ( "fmt" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // MigrationNeededError reports that Telegram requested DC migration to continue login. diff --git a/telegram/auth/qrlogin/options.go b/telegram/auth/qrlogin/options.go index df9c2c1dba..f854b0cbf7 100644 --- a/telegram/auth/qrlogin/options.go +++ b/telegram/auth/qrlogin/options.go @@ -3,7 +3,7 @@ package qrlogin import ( "context" - "github.com/gotd/td/clock" + "github.com/beeper/td/clock" ) // Options of QR. diff --git a/telegram/auth/qrlogin/qrlogin.go b/telegram/auth/qrlogin/qrlogin.go index e306f3eebf..19a802bc82 100644 --- a/telegram/auth/qrlogin/qrlogin.go +++ b/telegram/auth/qrlogin/qrlogin.go @@ -9,8 +9,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/clock" - "github.com/gotd/td/tg" + "github.com/beeper/td/clock" + "github.com/beeper/td/tg" ) // QR implements Telegram QR login flow. diff --git a/telegram/auth/qrlogin/qrlogin_test.go b/telegram/auth/qrlogin/qrlogin_test.go index 2e1a475699..297c407fbd 100644 --- a/telegram/auth/qrlogin/qrlogin_test.go +++ b/telegram/auth/qrlogin/qrlogin_test.go @@ -9,10 +9,10 @@ import ( "github.com/gotd/neo" - "github.com/gotd/td/constant" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/constant" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func testQR(t *testing.T, migrate func(ctx context.Context, dcID int) error) (*tgmock.Mock, QR) { diff --git a/telegram/auth/self.go b/telegram/auth/self.go index f0d89c275c..53a0dd7222 100644 --- a/telegram/auth/self.go +++ b/telegram/auth/self.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // self returns current user. diff --git a/telegram/auth/self_test.go b/telegram/auth/self_test.go index 8dcff01174..63573236d8 100644 --- a/telegram/auth/self_test.go +++ b/telegram/auth/self_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func TestClient_self(t *testing.T) { diff --git a/telegram/auth/signup.go b/telegram/auth/signup.go index f1b30a1ff3..9767bb3f89 100644 --- a/telegram/auth/signup.go +++ b/telegram/auth/signup.go @@ -3,7 +3,7 @@ package auth import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // SignUpRequired means that log in failed because corresponding account diff --git a/telegram/auth/status.go b/telegram/auth/status.go index ee90f062f8..337b60dae8 100644 --- a/telegram/auth/status.go +++ b/telegram/auth/status.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Status represents authorization status. diff --git a/telegram/auth/status_test.go b/telegram/auth/status_test.go index 68368a611c..736ddb40d0 100644 --- a/telegram/auth/status_test.go +++ b/telegram/auth/status_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgmock" ) func TestClient_Status(t *testing.T) { diff --git a/telegram/auth/user.go b/telegram/auth/user.go index e249b6d1a5..6d9e2448b0 100644 --- a/telegram/auth/user.go +++ b/telegram/auth/user.go @@ -5,8 +5,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) // ErrPasswordInvalid means that password provided to Password is invalid. diff --git a/telegram/auth/user_test.go b/telegram/auth/user_test.go index 7ef9d185d4..49e3fc4ac9 100644 --- a/telegram/auth/user_test.go +++ b/telegram/auth/user_test.go @@ -12,10 +12,10 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgmock" ) func getHex(t testing.TB, in string) []byte { diff --git a/telegram/auth_example_test.go b/telegram/auth_example_test.go index 201cfc52f5..c7a87cf68f 100644 --- a/telegram/auth_example_test.go +++ b/telegram/auth_example_test.go @@ -9,11 +9,11 @@ import ( "strconv" "strings" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/telegram/auth/qrlogin" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/telegram/auth/qrlogin" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/tg" ) func ExampleClient_Auth_codeOnly() { diff --git a/telegram/builder.go b/telegram/builder.go index 14274747ce..4d7e01915c 100644 --- a/telegram/builder.go +++ b/telegram/builder.go @@ -13,12 +13,12 @@ import ( "go.uber.org/zap" "golang.org/x/net/proxy" - "github.com/gotd/td/clock" - "github.com/gotd/td/crypto" - "github.com/gotd/td/session" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/clock" + "github.com/beeper/td/crypto" + "github.com/beeper/td/session" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/tgerr" ) func sessionDir() (string, error) { diff --git a/telegram/cdn.go b/telegram/cdn.go index 49f68a00b8..c3ccd1d9c9 100644 --- a/telegram/cdn.go +++ b/telegram/cdn.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tg" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tg" ) func parseCDNKeys(keys ...tg.CDNPublicKey) ([]*rsa.PublicKey, error) { diff --git a/telegram/cdn_test.go b/telegram/cdn_test.go index f3de20e0d1..f5b70b73d1 100644 --- a/telegram/cdn_test.go +++ b/telegram/cdn_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func Test_parseCDNKeys(t *testing.T) { diff --git a/telegram/cfg.go b/telegram/cfg.go index 278792834a..b0981714a4 100644 --- a/telegram/cfg.go +++ b/telegram/cfg.go @@ -5,8 +5,8 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) // Available MTProto default server addresses. diff --git a/telegram/cfg_test.go b/telegram/cfg_test.go index caf8ab8b7a..7fcfaf7c8e 100644 --- a/telegram/cfg_test.go +++ b/telegram/cfg_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestClient_fetchConfig(t *testing.T) { diff --git a/telegram/client.go b/telegram/client.go index f3bfbade06..95f9ea106e 100644 --- a/telegram/client.go +++ b/telegram/client.go @@ -11,17 +11,17 @@ import ( "go.uber.org/atomic" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/clock" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/oteltg" - "github.com/gotd/td/pool" - "github.com/gotd/td/session" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/telegram/internal/manager" - "github.com/gotd/td/telegram/internal/version" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/clock" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/oteltg" + "github.com/beeper/td/pool" + "github.com/beeper/td/session" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/telegram/internal/manager" + "github.com/beeper/td/telegram/internal/version" + "github.com/beeper/td/tg" ) // UpdateHandler will be called on received updates from Telegram. diff --git a/telegram/client_e2e_test.go b/telegram/client_e2e_test.go index 74dd7991a4..ef3e6ce6a0 100644 --- a/telegram/client_e2e_test.go +++ b/telegram/client_e2e_test.go @@ -12,18 +12,18 @@ import ( "go.uber.org/zap" "go.uber.org/zap/zaptest" - "github.com/gotd/td/session" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/telegram/downloader" - "github.com/gotd/td/telegram/uploader" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgtest" - "github.com/gotd/td/tgtest/cluster" - "github.com/gotd/td/tgtest/services/file" - "github.com/gotd/td/transport" + "github.com/beeper/td/session" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/telegram/downloader" + "github.com/beeper/td/telegram/uploader" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgtest" + "github.com/beeper/td/tgtest/cluster" + "github.com/beeper/td/tgtest/services/file" + "github.com/beeper/td/transport" ) type clusterSetup struct { diff --git a/telegram/client_external_test.go b/telegram/client_external_test.go index 4d30600d62..685270ac7e 100644 --- a/telegram/client_external_test.go +++ b/telegram/client_external_test.go @@ -14,14 +14,14 @@ import ( "go.uber.org/zap/zapcore" "go.uber.org/zap/zaptest" - "github.com/gotd/td/session" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/telegram/internal/e2etest" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" - "github.com/gotd/td/transport" + "github.com/beeper/td/session" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/telegram/internal/e2etest" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" + "github.com/beeper/td/transport" ) func tryConnect(ctx context.Context, opts telegram.Options) error { diff --git a/telegram/client_mtproxy_test.go b/telegram/client_mtproxy_test.go index 78f49f2de6..ae79c8d305 100644 --- a/telegram/client_mtproxy_test.go +++ b/telegram/client_mtproxy_test.go @@ -16,10 +16,10 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" - "github.com/gotd/td/session" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/dcs" + "github.com/beeper/td/session" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/dcs" ) type mtg struct { diff --git a/telegram/client_test.go b/telegram/client_test.go index 0d88dffaf9..ce3d63cb36 100644 --- a/telegram/client_test.go +++ b/telegram/client_test.go @@ -20,16 +20,16 @@ import ( "go.uber.org/atomic" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" - "github.com/gotd/td/rpc" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" - "github.com/gotd/td/tmap" + "github.com/beeper/td/bin" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" + "github.com/beeper/td/rpc" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" + "github.com/beeper/td/tmap" ) type testHandler func(id int64, body bin.Encoder) (bin.Encoder, error) diff --git a/telegram/compat.go b/telegram/compat.go index cc91ed230e..37cd4827d9 100644 --- a/telegram/compat.go +++ b/telegram/compat.go @@ -1,8 +1,8 @@ package telegram import ( - "github.com/gotd/td/session" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/session" + "github.com/beeper/td/tgerr" ) // SessionStorage is alias of mtproto.SessionStorage. diff --git a/telegram/conn_builder.go b/telegram/conn_builder.go index cc49d37d75..b572b1574a 100644 --- a/telegram/conn_builder.go +++ b/telegram/conn_builder.go @@ -5,13 +5,13 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/pool" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/telegram/internal/manager" - "github.com/gotd/td/tg" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/pool" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/telegram/internal/manager" + "github.com/beeper/td/tg" + "github.com/beeper/td/transport" ) type clientHandler struct { diff --git a/telegram/connect.go b/telegram/connect.go index d6249881e7..df9a5b79fd 100644 --- a/telegram/connect.go +++ b/telegram/connect.go @@ -9,10 +9,10 @@ import ( "go.uber.org/multierr" "go.uber.org/zap" - "github.com/gotd/td/exchange" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/exchange" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/tgerr" ) func (c *Client) runUntilRestart(ctx context.Context) error { diff --git a/telegram/connect_test.go b/telegram/connect_test.go index 8d6aaf82c6..0aec220035 100644 --- a/telegram/connect_test.go +++ b/telegram/connect_test.go @@ -9,8 +9,8 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/exchange" + "github.com/beeper/td/bin" + "github.com/beeper/td/exchange" ) type fingerprintNotFoundConn struct{} diff --git a/telegram/dcs/dns.go b/telegram/dcs/dns.go index 7ee6da5ef9..a59ddb584b 100644 --- a/telegram/dcs/dns.go +++ b/telegram/dcs/dns.go @@ -14,9 +14,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tg" ) var dnsKey struct { diff --git a/telegram/dcs/example_test.go b/telegram/dcs/example_test.go index c3e9da3f7f..35dd313a1f 100644 --- a/telegram/dcs/example_test.go +++ b/telegram/dcs/example_test.go @@ -7,8 +7,8 @@ import ( "golang.org/x/net/proxy" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/dcs" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/dcs" ) func ExampleDialFunc() { diff --git a/telegram/dcs/find.go b/telegram/dcs/find.go index 4039c24ae7..3d6d9daa78 100644 --- a/telegram/dcs/find.go +++ b/telegram/dcs/find.go @@ -3,7 +3,7 @@ package dcs import ( "sort" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // FindDCs searches DCs candidates from given config. diff --git a/telegram/dcs/find_test.go b/telegram/dcs/find_test.go index 2c6c954822..4703bb3ecc 100644 --- a/telegram/dcs/find_test.go +++ b/telegram/dcs/find_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestFindDCs(t *testing.T) { diff --git a/telegram/dcs/list.go b/telegram/dcs/list.go index 32b4a9ac84..24763f272c 100644 --- a/telegram/dcs/list.go +++ b/telegram/dcs/list.go @@ -1,6 +1,6 @@ package dcs -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // List is a list of Telegram DC addresses and domains. type List struct { diff --git a/telegram/dcs/mtproxy.go b/telegram/dcs/mtproxy.go index 845bd687db..dc7bdef0d3 100644 --- a/telegram/dcs/mtproxy.go +++ b/telegram/dcs/mtproxy.go @@ -8,11 +8,11 @@ import ( "github.com/go-faster/errors" "go.uber.org/multierr" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mtproxy" - "github.com/gotd/td/mtproxy/obfuscator" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/transport" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mtproxy" + "github.com/beeper/td/mtproxy/obfuscator" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/transport" ) var _ Resolver = mtProxy{} diff --git a/telegram/dcs/plain.go b/telegram/dcs/plain.go index 8fd2a491a9..b49e1ab460 100644 --- a/telegram/dcs/plain.go +++ b/telegram/dcs/plain.go @@ -9,12 +9,12 @@ import ( "github.com/go-faster/errors" "go.uber.org/multierr" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mtproxy" - "github.com/gotd/td/mtproxy/obfuscator" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/tg" - "github.com/gotd/td/transport" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mtproxy" + "github.com/beeper/td/mtproxy/obfuscator" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/tg" + "github.com/beeper/td/transport" ) var _ Resolver = plain{} diff --git a/telegram/dcs/prod.go b/telegram/dcs/prod.go index 40a021fe41..f526efa29a 100644 --- a/telegram/dcs/prod.go +++ b/telegram/dcs/prod.go @@ -1,7 +1,7 @@ package dcs import ( - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Prod returns production DC list. diff --git a/telegram/dcs/protocol.go b/telegram/dcs/protocol.go index 60ac04cff1..2a6e2df2c2 100644 --- a/telegram/dcs/protocol.go +++ b/telegram/dcs/protocol.go @@ -3,7 +3,7 @@ package dcs import ( "net" - "github.com/gotd/td/transport" + "github.com/beeper/td/transport" ) type protocol interface { diff --git a/telegram/dcs/resolver.go b/telegram/dcs/resolver.go index 983a2db815..7e36f83618 100644 --- a/telegram/dcs/resolver.go +++ b/telegram/dcs/resolver.go @@ -4,7 +4,7 @@ import ( "context" "net" - "github.com/gotd/td/transport" + "github.com/beeper/td/transport" ) var _ Resolver = DefaultResolver() diff --git a/telegram/dcs/test.go b/telegram/dcs/test.go index cc781b1fdf..c55a97e7eb 100644 --- a/telegram/dcs/test.go +++ b/telegram/dcs/test.go @@ -1,6 +1,6 @@ package dcs -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // Staging returns staging DC list. // diff --git a/telegram/dcs/websocket.go b/telegram/dcs/websocket.go index 2b350fb53f..3c22c6333e 100644 --- a/telegram/dcs/websocket.go +++ b/telegram/dcs/websocket.go @@ -7,12 +7,12 @@ import ( "github.com/coder/websocket" "github.com/go-faster/errors" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mtproxy" - "github.com/gotd/td/mtproxy/obfuscator" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/transport" - "github.com/gotd/td/wsutil" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mtproxy" + "github.com/beeper/td/mtproxy/obfuscator" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/transport" + "github.com/beeper/td/wsutil" ) var _ Resolver = ws{} diff --git a/telegram/device.go b/telegram/device.go index bed83acb45..ff59b7d988 100644 --- a/telegram/device.go +++ b/telegram/device.go @@ -1,6 +1,6 @@ package telegram -import "github.com/gotd/td/telegram/internal/manager" +import "github.com/beeper/td/telegram/internal/manager" // DeviceConfig is config which send when Telegram connection session created. type DeviceConfig = manager.DeviceConfig diff --git a/telegram/downloader/builder.go b/telegram/downloader/builder.go index 1e820b5e9a..3b0994cfc9 100644 --- a/telegram/downloader/builder.go +++ b/telegram/downloader/builder.go @@ -9,7 +9,7 @@ import ( "github.com/go-faster/errors" "go.uber.org/multierr" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Builder is a download builder. diff --git a/telegram/downloader/cdn.go b/telegram/downloader/cdn.go index 4fb912e673..293f2b7fab 100644 --- a/telegram/downloader/cdn.go +++ b/telegram/downloader/cdn.go @@ -8,8 +8,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) // ExpiredTokenError error is returned when Downloader get expired file token for CDN. diff --git a/telegram/downloader/cdn_test.go b/telegram/downloader/cdn_test.go index 2b2dd91a9b..14fb8d1da1 100644 --- a/telegram/downloader/cdn_test.go +++ b/telegram/downloader/cdn_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func Test_cdn_decrypt(t *testing.T) { diff --git a/telegram/downloader/client.go b/telegram/downloader/client.go index c365a4571c..a7b2abe75d 100644 --- a/telegram/downloader/client.go +++ b/telegram/downloader/client.go @@ -3,7 +3,7 @@ package downloader import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // CDN represents Telegram RPC client to CDN server. diff --git a/telegram/downloader/downloader.go b/telegram/downloader/downloader.go index 57a5d9cf15..864232fe57 100644 --- a/telegram/downloader/downloader.go +++ b/telegram/downloader/downloader.go @@ -2,8 +2,8 @@ package downloader import ( - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) // Downloader is Telegram file downloader. diff --git a/telegram/downloader/downloader_test.go b/telegram/downloader/downloader_test.go index e0050d4bfc..bcb94d0f7d 100644 --- a/telegram/downloader/downloader_test.go +++ b/telegram/downloader/downloader_test.go @@ -15,10 +15,10 @@ import ( "github.com/go-faster/errors" "github.com/stretchr/testify/require" - "github.com/gotd/td/crypto" - "github.com/gotd/td/syncio" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" + "github.com/beeper/td/crypto" + "github.com/beeper/td/syncio" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" ) type mock struct { diff --git a/telegram/downloader/master.go b/telegram/downloader/master.go index 9eab062858..5a1c31bf5a 100644 --- a/telegram/downloader/master.go +++ b/telegram/downloader/master.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // RedirectError error is returned when Downloader get CDN redirect. diff --git a/telegram/downloader/parallel.go b/telegram/downloader/parallel.go index 832f895185..61dc33d071 100644 --- a/telegram/downloader/parallel.go +++ b/telegram/downloader/parallel.go @@ -7,9 +7,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/syncio" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/tg" + "github.com/beeper/td/syncio" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/tg" ) // nolint:gocognit diff --git a/telegram/downloader/reader.go b/telegram/downloader/reader.go index 4c0c564a02..fbe8ce63d5 100644 --- a/telegram/downloader/reader.go +++ b/telegram/downloader/reader.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) type block struct { diff --git a/telegram/downloader/stream.go b/telegram/downloader/stream.go index 2dd75920e8..d4fc2385ba 100644 --- a/telegram/downloader/stream.go +++ b/telegram/downloader/stream.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/tg" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/tg" ) func (d *Downloader) stream(ctx context.Context, r *reader, w io.Writer) (tg.StorageFileTypeClass, error) { diff --git a/telegram/downloader/stream_reader.go b/telegram/downloader/stream_reader.go index 1fb3b06657..cd4e207d35 100644 --- a/telegram/downloader/stream_reader.go +++ b/telegram/downloader/stream_reader.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type streamReader struct { diff --git a/telegram/downloader/verifier.go b/telegram/downloader/verifier.go index 1463e26a59..6dfa43db19 100644 --- a/telegram/downloader/verifier.go +++ b/telegram/downloader/verifier.go @@ -8,9 +8,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) // ErrHashMismatch means that download hash verification was failed. diff --git a/telegram/downloader/verifier_test.go b/telegram/downloader/verifier_test.go index 3b3275ea0f..2b1f4df01f 100644 --- a/telegram/downloader/verifier_test.go +++ b/telegram/downloader/verifier_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) var hashRanges = [][]tg.FileHash{ diff --git a/telegram/downloader/web.go b/telegram/downloader/web.go index f15673413d..6fd6401fdb 100644 --- a/telegram/downloader/web.go +++ b/telegram/downloader/web.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) var errHashesNotSupported = errors.New("this schema does not support hashes fetch") diff --git a/telegram/flood_wait.go b/telegram/flood_wait.go index 0b3bc8cff3..fbb205f976 100644 --- a/telegram/flood_wait.go +++ b/telegram/flood_wait.go @@ -1,7 +1,7 @@ package telegram import ( - "github.com/gotd/td/tgerr" + "github.com/beeper/td/tgerr" ) // ErrFloodWait is error type of "FLOOD_WAIT" error. diff --git a/telegram/flood_wait_test.go b/telegram/flood_wait_test.go index 5b660e6487..20aed04663 100644 --- a/telegram/flood_wait_test.go +++ b/telegram/flood_wait_test.go @@ -7,8 +7,8 @@ import ( "github.com/go-faster/errors" "github.com/stretchr/testify/assert" - "github.com/gotd/td/telegram" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/telegram" + "github.com/beeper/td/tgerr" ) func TestAsFloodWait(t *testing.T) { diff --git a/telegram/handle_updates.go b/telegram/handle_updates.go index 7c46622605..5f4ae3fb69 100644 --- a/telegram/handle_updates.go +++ b/telegram/handle_updates.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func (c *Client) updateInterceptor(updates ...tg.UpdateClass) { diff --git a/telegram/handle_updates_test.go b/telegram/handle_updates_test.go index 632810fe4a..2d69f0093d 100644 --- a/telegram/handle_updates_test.go +++ b/telegram/handle_updates_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type mockHandler struct { diff --git a/telegram/internal/deeplink/domain.go b/telegram/internal/deeplink/domain.go index 40a6b1124a..7dd6bfa271 100644 --- a/telegram/internal/deeplink/domain.go +++ b/telegram/internal/deeplink/domain.go @@ -3,7 +3,7 @@ package deeplink import ( "github.com/go-faster/errors" - "github.com/gotd/td/ascii" + "github.com/beeper/td/ascii" ) // ValidateDomain validate given domain (user) name diff --git a/telegram/internal/e2etest/auth.go b/telegram/internal/e2etest/auth.go index 64279882c4..65f8e57497 100644 --- a/telegram/internal/e2etest/auth.go +++ b/telegram/internal/e2etest/auth.go @@ -6,7 +6,7 @@ import ( "github.com/cenkalti/backoff/v4" "github.com/go-faster/errors" - "github.com/gotd/td/telegram/auth" + "github.com/beeper/td/telegram/auth" ) func (s *Suite) createFlow(ctx context.Context) (auth.Flow, error) { diff --git a/telegram/internal/e2etest/auth_test.go b/telegram/internal/e2etest/auth_test.go index 5e3b68525b..97c1c46b84 100644 --- a/telegram/internal/e2etest/auth_test.go +++ b/telegram/internal/e2etest/auth_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/tg" ) type mockFlow struct { diff --git a/telegram/internal/e2etest/echo_bot.go b/telegram/internal/e2etest/echo_bot.go index 101ce0db1e..e6cd5e6945 100644 --- a/telegram/internal/e2etest/echo_bot.go +++ b/telegram/internal/e2etest/echo_bot.go @@ -8,10 +8,10 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) // EchoBot is a simple echo message bot. diff --git a/telegram/internal/e2etest/filter.go b/telegram/internal/e2etest/filter.go index e6f8e061c0..2f97cd6189 100644 --- a/telegram/internal/e2etest/filter.go +++ b/telegram/internal/e2etest/filter.go @@ -3,7 +3,7 @@ package e2etest import ( "strings" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func filterMessage(update *tg.UpdateNewMessage) bool { diff --git a/telegram/internal/e2etest/options.go b/telegram/internal/e2etest/options.go index a3ead04fdd..facb0df304 100644 --- a/telegram/internal/e2etest/options.go +++ b/telegram/internal/e2etest/options.go @@ -5,8 +5,8 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/constant" - "github.com/gotd/td/crypto" + "github.com/beeper/td/constant" + "github.com/beeper/td/crypto" ) // TestOptions contains some common test server settings. diff --git a/telegram/internal/e2etest/retry.go b/telegram/internal/e2etest/retry.go index 2ef6af8d11..8b14c11490 100644 --- a/telegram/internal/e2etest/retry.go +++ b/telegram/internal/e2etest/retry.go @@ -6,9 +6,9 @@ import ( "github.com/cenkalti/backoff/v4" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) type retryInvoker struct { diff --git a/telegram/internal/e2etest/suite.go b/telegram/internal/e2etest/suite.go index 0a222ccf11..f335347639 100644 --- a/telegram/internal/e2etest/suite.go +++ b/telegram/internal/e2etest/suite.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/dcs" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/dcs" ) // Suite is struct which contains external E2E test parameters. diff --git a/telegram/internal/e2etest/terentyev.go b/telegram/internal/e2etest/terentyev.go index 8f6bd16b6c..163107efab 100644 --- a/telegram/internal/e2etest/terentyev.go +++ b/telegram/internal/e2etest/terentyev.go @@ -8,9 +8,9 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) // User is a simple user bot. diff --git a/telegram/internal/manager/conn.go b/telegram/internal/manager/conn.go index f7080b5885..8989b1ff12 100644 --- a/telegram/internal/manager/conn.go +++ b/telegram/internal/manager/conn.go @@ -9,13 +9,13 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/clock" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/pool" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/clock" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/pool" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) type protoConn interface { diff --git a/telegram/internal/manager/create.go b/telegram/internal/manager/create.go index b00d3dd1f1..c30eb0bc9d 100644 --- a/telegram/internal/manager/create.go +++ b/telegram/internal/manager/create.go @@ -6,11 +6,11 @@ import ( "github.com/cenkalti/backoff/v4" - "github.com/gotd/td/clock" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/tg" + "github.com/beeper/td/clock" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/tg" ) // SetupCallback is an optional setup connection callback. diff --git a/telegram/internal/manager/device.go b/telegram/internal/manager/device.go index ba15d94cb4..de70e579e7 100644 --- a/telegram/internal/manager/device.go +++ b/telegram/internal/manager/device.go @@ -3,8 +3,8 @@ package manager import ( "runtime" - "github.com/gotd/td/telegram/internal/version" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/internal/version" + "github.com/beeper/td/tg" ) // DeviceConfig is config which send when Telegram connection session created. diff --git a/telegram/internal/manager/handler.go b/telegram/internal/manager/handler.go index 2e0f84c412..93b147f43f 100644 --- a/telegram/internal/manager/handler.go +++ b/telegram/internal/manager/handler.go @@ -1,9 +1,9 @@ package manager import ( - "github.com/gotd/td/bin" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/tg" ) // Handler abstracts updates and session handler. diff --git a/telegram/internal/manager/sync.go b/telegram/internal/manager/sync.go index 4f41b3f50d..38ca06d1a5 100644 --- a/telegram/internal/manager/sync.go +++ b/telegram/internal/manager/sync.go @@ -3,7 +3,7 @@ package manager import ( "sync/atomic" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // AtomicConfig is atomic tg.Config. diff --git a/telegram/internal/upconv/upconv.go b/telegram/internal/upconv/upconv.go index de530c3d83..d461787470 100644 --- a/telegram/internal/upconv/upconv.go +++ b/telegram/internal/upconv/upconv.go @@ -1,6 +1,6 @@ package upconv -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" func convertOptional(msg *tg.Message, i tg.UpdatesClass) { if u, ok := i.(interface { diff --git a/telegram/internal/version/version.go b/telegram/internal/version/version.go index 5468f8dcff..4da0b33990 100644 --- a/telegram/internal/version/version.go +++ b/telegram/internal/version/version.go @@ -23,7 +23,7 @@ func GetVersion() string { } // Hard-coded package name. Probably we can generate this via parsing // the go.mod file. - const pkg = "github.com/gotd/td" + const pkg = "github.com/beeper/td" for _, d := range info.Deps { if strings.HasPrefix(d.Path, pkg) { versionOnce.version = d.Version diff --git a/telegram/invoke.go b/telegram/invoke.go index 1290c3bb17..93d30ea628 100644 --- a/telegram/invoke.go +++ b/telegram/invoke.go @@ -9,9 +9,9 @@ import ( "go.opentelemetry.io/otel/trace" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) // API returns *tg.Client for calling raw MTProto methods. diff --git a/telegram/message/audio.go b/telegram/message/audio.go index a21021fac9..f24c8d8602 100644 --- a/telegram/message/audio.go +++ b/telegram/message/audio.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Audio creates new AudioDocumentBuilder to create audio attachment. diff --git a/telegram/message/audio_example_test.go b/telegram/message/audio_example_test.go index 51a251bcc5..4d9493ee4d 100644 --- a/telegram/message/audio_example_test.go +++ b/telegram/message/audio_example_test.go @@ -8,10 +8,10 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/uploader" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/uploader" + "github.com/beeper/td/tg" ) func sendAudio(ctx context.Context) error { diff --git a/telegram/message/audio_test.go b/telegram/message/audio_test.go index 5bb5ec7ce7..8a019c911c 100644 --- a/telegram/message/audio_test.go +++ b/telegram/message/audio_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestVoice(t *testing.T) { diff --git a/telegram/message/builder.go b/telegram/message/builder.go index edff4a7f81..8e2d5c5109 100644 --- a/telegram/message/builder.go +++ b/telegram/message/builder.go @@ -3,9 +3,9 @@ package message import ( "time" - "github.com/gotd/td/telegram/message/markup" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/markup" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) type peerPromise = peer.Promise diff --git a/telegram/message/builder_test.go b/telegram/message/builder_test.go index 07f1cc0e6c..f87f4619ab 100644 --- a/telegram/message/builder_test.go +++ b/telegram/message/builder_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestBuilder(t *testing.T) { diff --git a/telegram/message/contact.go b/telegram/message/contact.go index 8b77031cce..7217a888d5 100644 --- a/telegram/message/contact.go +++ b/telegram/message/contact.go @@ -1,6 +1,6 @@ package message -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // Contact adds contact attachment. func Contact(contact tg.InputMediaContact, caption ...StyledTextOption) MediaOption { diff --git a/telegram/message/contact_test.go b/telegram/message/contact_test.go index 40ee103348..c34d50f11c 100644 --- a/telegram/message/contact_test.go +++ b/telegram/message/contact_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func TestContact(t *testing.T) { diff --git a/telegram/message/delete.go b/telegram/message/delete.go index 9e6632201e..350b9c6c7a 100644 --- a/telegram/message/delete.go +++ b/telegram/message/delete.go @@ -5,8 +5,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) // DeleteBuilder is an intermediate builder to delete messages. diff --git a/telegram/message/delete_test.go b/telegram/message/delete_test.go index 4fbdc8ffce..f2118901e8 100644 --- a/telegram/message/delete_test.go +++ b/telegram/message/delete_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestRequestBuilder_Delete(t *testing.T) { diff --git a/telegram/message/dice.go b/telegram/message/dice.go index e9bc6f06a4..cb4be9024b 100644 --- a/telegram/message/dice.go +++ b/telegram/message/dice.go @@ -3,7 +3,7 @@ package message import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // MediaDice adds a dice-based animated sticker. diff --git a/telegram/message/dice_example_test.go b/telegram/message/dice_example_test.go index 1b2936ffa2..5d2f85f4c6 100644 --- a/telegram/message/dice_example_test.go +++ b/telegram/message/dice_example_test.go @@ -6,9 +6,9 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/tg" ) func sendDice(ctx context.Context) error { diff --git a/telegram/message/dice_test.go b/telegram/message/dice_test.go index d8f293e706..d0c69d59fb 100644 --- a/telegram/message/dice_test.go +++ b/telegram/message/dice_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestMediaDice(t *testing.T) { diff --git a/telegram/message/doc_test.go b/telegram/message/doc_test.go index a63aa25b29..1d0438b81a 100644 --- a/telegram/message/doc_test.go +++ b/telegram/message/doc_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgmock" ) func testSender(t *testing.T) (*Sender, *tgmock.Mock) { diff --git a/telegram/message/document.go b/telegram/message/document.go index 8adc5ba4fa..b460360b5a 100644 --- a/telegram/message/document.go +++ b/telegram/message/document.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // DocumentBuilder is a Document media option. diff --git a/telegram/message/document_test.go b/telegram/message/document_test.go index 41cf9d4925..3db2affe3c 100644 --- a/telegram/message/document_test.go +++ b/telegram/message/document_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestDocument(t *testing.T) { diff --git a/telegram/message/draft.go b/telegram/message/draft.go index d493899442..40d20defd7 100644 --- a/telegram/message/draft.go +++ b/telegram/message/draft.go @@ -5,9 +5,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func (b *Builder) saveDraftRequest( diff --git a/telegram/message/draft_example_test.go b/telegram/message/draft_example_test.go index e59c849866..e8517b5df5 100644 --- a/telegram/message/draft_example_test.go +++ b/telegram/message/draft_example_test.go @@ -8,10 +8,10 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func saveDraft(ctx context.Context) error { diff --git a/telegram/message/draft_test.go b/telegram/message/draft_test.go index f9c7c31482..05c22bc80c 100644 --- a/telegram/message/draft_test.go +++ b/telegram/message/draft_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func TestDraft(t *testing.T) { diff --git a/telegram/message/edit.go b/telegram/message/edit.go index 5847733f82..3823b1a8c3 100644 --- a/telegram/message/edit.go +++ b/telegram/message/edit.go @@ -5,9 +5,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) // EditMessageBuilder creates edit message builder. diff --git a/telegram/message/edit_test.go b/telegram/message/edit_test.go index e2c21e1434..f017973810 100644 --- a/telegram/message/edit_test.go +++ b/telegram/message/edit_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func TestEditMessageBuilder_Text(t *testing.T) { diff --git a/telegram/message/entity/fix.go b/telegram/message/entity/fix.go index e3dc67896b..673a9784d8 100644 --- a/telegram/message/entity/fix.go +++ b/telegram/message/entity/fix.go @@ -6,7 +6,7 @@ import ( "strings" "unicode" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // SortEntities sorts entities as TDLib does it. diff --git a/telegram/message/entity/fix_test.go b/telegram/message/entity/fix_test.go index 12a699e283..92e19a80b0 100644 --- a/telegram/message/entity/fix_test.go +++ b/telegram/message/entity/fix_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestEnsureTrim(t *testing.T) { diff --git a/telegram/message/entity/format.go b/telegram/message/entity/format.go index 6b0564ff07..5abbf8af0e 100644 --- a/telegram/message/entity/format.go +++ b/telegram/message/entity/format.go @@ -3,7 +3,7 @@ package entity import ( "strings" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type utf8entity struct { diff --git a/telegram/message/entity/format_test.go b/telegram/message/entity/format_test.go index c20649ef33..fd35108672 100644 --- a/telegram/message/entity/format_test.go +++ b/telegram/message/entity/format_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestBuilder_TextRange(t *testing.T) { diff --git a/telegram/message/entity/options.gen.go b/telegram/message/entity/options.gen.go index 03ae5c0767..8ed5e7822f 100644 --- a/telegram/message/entity/options.gen.go +++ b/telegram/message/entity/options.gen.go @@ -4,7 +4,7 @@ package entity import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) var ( diff --git a/telegram/message/entity/options.go b/telegram/message/entity/options.go index 4e278ef3d3..6243e586ef 100644 --- a/telegram/message/entity/options.go +++ b/telegram/message/entity/options.go @@ -1,6 +1,6 @@ package entity -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // Formatter is a message entity constructor. type Formatter func(offset, limit int) tg.MessageEntityClass @@ -17,4 +17,4 @@ func (b *Builder) Format(s string, formats ...Formatter) *Builder { return b.appendMessage(s, formats...) } -//go:generate go run github.com/gotd/td/telegram/message/internal/mkentity -output options.gen.go +//go:generate go run github.com/beeper/td/telegram/message/internal/mkentity -output options.gen.go diff --git a/telegram/message/entity/options_test.go b/telegram/message/entity/options_test.go index 4b9333c89c..cf01e7f735 100644 --- a/telegram/message/entity/options_test.go +++ b/telegram/message/entity/options_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestBuilder(t *testing.T) { diff --git a/telegram/message/entity/token_test.go b/telegram/message/entity/token_test.go index 76fe2a914f..1fba757ebd 100644 --- a/telegram/message/entity/token_test.go +++ b/telegram/message/entity/token_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestToken_Apply(t *testing.T) { diff --git a/telegram/message/entity/user_resolver.go b/telegram/message/entity/user_resolver.go index df0583db02..0bb6fbfea5 100644 --- a/telegram/message/entity/user_resolver.go +++ b/telegram/message/entity/user_resolver.go @@ -1,6 +1,6 @@ package entity -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // UserResolver is callback for resolving InputUser by ID. type UserResolver = func(id int64) (tg.InputUserClass, error) diff --git a/telegram/message/entity/write_test.go b/telegram/message/entity/write_test.go index 8d6147b7b5..d24ddd2c7c 100644 --- a/telegram/message/entity/write_test.go +++ b/telegram/message/entity/write_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" + "github.com/beeper/td/testutil" ) func TestComputeLength(t *testing.T) { diff --git a/telegram/message/file.go b/telegram/message/file.go index 8e8c25ec39..9403d82dbb 100644 --- a/telegram/message/file.go +++ b/telegram/message/file.go @@ -1,6 +1,6 @@ package message -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // FileLocation is an abstraction of Telegram file location. type FileLocation interface { diff --git a/telegram/message/file_promise.go b/telegram/message/file_promise.go index 18f8ec890b..b996767a41 100644 --- a/telegram/message/file_promise.go +++ b/telegram/message/file_promise.go @@ -7,9 +7,9 @@ import ( "go.uber.org/atomic" - "github.com/gotd/td/telegram/uploader" - "github.com/gotd/td/telegram/uploader/source" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/uploader" + "github.com/beeper/td/telegram/uploader/source" + "github.com/beeper/td/tg" ) // Uploader is an abstraction for Telegram file uploader. diff --git a/telegram/message/file_promise_example_test.go b/telegram/message/file_promise_example_test.go index 11807ffd07..569352936e 100644 --- a/telegram/message/file_promise_example_test.go +++ b/telegram/message/file_promise_example_test.go @@ -8,9 +8,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/tg" ) func filePromiseResult(ctx context.Context) error { diff --git a/telegram/message/forward.go b/telegram/message/forward.go index 75a33df9a9..9ce84123c7 100644 --- a/telegram/message/forward.go +++ b/telegram/message/forward.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // ForwardBuilder is a forward request builder. diff --git a/telegram/message/forward_test.go b/telegram/message/forward_test.go index 4fa5a79808..ec2a7bb799 100644 --- a/telegram/message/forward_test.go +++ b/telegram/message/forward_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestBuilder_ForwardIDs(t *testing.T) { diff --git a/telegram/message/game.go b/telegram/message/game.go index 2d5895e5b6..a8e2f0120d 100644 --- a/telegram/message/game.go +++ b/telegram/message/game.go @@ -1,6 +1,6 @@ package message -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // Game adds a game attachment. func Game(id tg.InputGameClass, caption ...StyledTextOption) MediaOption { diff --git a/telegram/message/game_test.go b/telegram/message/game_test.go index 8b966bb32a..5a50880eb6 100644 --- a/telegram/message/game_test.go +++ b/telegram/message/game_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestGame(t *testing.T) { diff --git a/telegram/message/geo_point.go b/telegram/message/geo_point.go index 746506d1bb..0d0cfe69f5 100644 --- a/telegram/message/geo_point.go +++ b/telegram/message/geo_point.go @@ -1,6 +1,6 @@ package message -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // GeoPoint adds geo point attachment. // NB: parameter accuracy may be zero and will not be used. diff --git a/telegram/message/geo_point_test.go b/telegram/message/geo_point_test.go index 55412be04a..4ba4e6a1cb 100644 --- a/telegram/message/geo_point_test.go +++ b/telegram/message/geo_point_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestGeoPoint(t *testing.T) { diff --git a/telegram/message/gif.go b/telegram/message/gif.go index 8899c90137..8124612170 100644 --- a/telegram/message/gif.go +++ b/telegram/message/gif.go @@ -3,7 +3,7 @@ package message import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // GIF add attributes to create GIF attachment. diff --git a/telegram/message/gif_example_test.go b/telegram/message/gif_example_test.go index f02c710dc2..2873b6e27e 100644 --- a/telegram/message/gif_example_test.go +++ b/telegram/message/gif_example_test.go @@ -6,9 +6,9 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/tg" ) func sendGif(ctx context.Context) error { diff --git a/telegram/message/gif_test.go b/telegram/message/gif_test.go index e8606992cb..1931a66f7b 100644 --- a/telegram/message/gif_test.go +++ b/telegram/message/gif_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestGIF(t *testing.T) { diff --git a/telegram/message/html/html.go b/telegram/message/html/html.go index 1cf7cdb5f6..d94347af16 100644 --- a/telegram/message/html/html.go +++ b/telegram/message/html/html.go @@ -7,9 +7,9 @@ import ( "io" "strings" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) // Bytes reads HTML from given byte slice and returns styling option diff --git a/telegram/message/html/html_example_test.go b/telegram/message/html/html_example_test.go index b9b51f02e1..0a32881552 100644 --- a/telegram/message/html/html_example_test.go +++ b/telegram/message/html/html_example_test.go @@ -6,10 +6,10 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/html" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/html" + "github.com/beeper/td/tg" ) func sendHTML(ctx context.Context) error { diff --git a/telegram/message/html/options.go b/telegram/message/html/options.go index 37b2bf3802..36fb03f1f8 100644 --- a/telegram/message/html/options.go +++ b/telegram/message/html/options.go @@ -1,8 +1,8 @@ package html import ( - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/tg" ) // Options is options of HTML. diff --git a/telegram/message/html/parser.go b/telegram/message/html/parser.go index 4956f7ee89..03c85c5ea2 100644 --- a/telegram/message/html/parser.go +++ b/telegram/message/html/parser.go @@ -8,8 +8,8 @@ import ( "github.com/go-faster/errors" "golang.org/x/net/html" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/tg" ) type htmlParser struct { diff --git a/telegram/message/html/parser_bench_test.go b/telegram/message/html/parser_bench_test.go index 4a3a62ff92..5e038cd15f 100644 --- a/telegram/message/html/parser_bench_test.go +++ b/telegram/message/html/parser_bench_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/gotd/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/entity" ) func BenchmarkHTML(b *testing.B) { diff --git a/telegram/message/html/parser_test.go b/telegram/message/html/parser_test.go index 3ac4808e19..5b4fc7b038 100644 --- a/telegram/message/html/parser_test.go +++ b/telegram/message/html/parser_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/require" "golang.org/x/net/html" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/tg" ) type htmlTestCase struct { diff --git a/telegram/message/html/stack.go b/telegram/message/html/stack.go index 61d6962452..3ac8ab1fa7 100644 --- a/telegram/message/html/stack.go +++ b/telegram/message/html/stack.go @@ -1,6 +1,6 @@ package html -import "github.com/gotd/td/telegram/message/entity" +import "github.com/beeper/td/telegram/message/entity" type stackElem struct { token entity.Token diff --git a/telegram/message/html/tdlib_test.go b/telegram/message/html/tdlib_test.go index d1ce1d1559..ef1b7200f1 100644 --- a/telegram/message/html/tdlib_test.go +++ b/telegram/message/html/tdlib_test.go @@ -1,6 +1,6 @@ package html -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" func tdlibHTMLTests() []htmlTestCase { entities := func(e ...tg.MessageEntityClass) func(msg string) []tg.MessageEntityClass { diff --git a/telegram/message/html/text_utl.go b/telegram/message/html/text_utl.go index 21ccb75ea9..47d1eea29d 100644 --- a/telegram/message/html/text_utl.go +++ b/telegram/message/html/text_utl.go @@ -9,8 +9,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/ascii" - "github.com/gotd/td/telegram/message/entity" + "github.com/beeper/td/ascii" + "github.com/beeper/td/telegram/message/entity" ) func isIPv6(str string) bool { diff --git a/telegram/message/html_test.go b/telegram/message/html_test.go index 3f66e32ced..a98e65aab5 100644 --- a/telegram/message/html_test.go +++ b/telegram/message/html_test.go @@ -6,10 +6,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/html" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/html" + "github.com/beeper/td/tg" ) func TestHTMLBuilder_String(t *testing.T) { diff --git a/telegram/message/inline.go b/telegram/message/inline.go index b0448b809f..2ebe2b4fbb 100644 --- a/telegram/message/inline.go +++ b/telegram/message/inline.go @@ -5,8 +5,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/inline" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/inline" + "github.com/beeper/td/tg" ) // InlineResult is a user method to send bot inline query result message. diff --git a/telegram/message/inline/article.go b/telegram/message/inline/article.go index 354c1baf6a..1e0ae70772 100644 --- a/telegram/message/inline/article.go +++ b/telegram/message/inline/article.go @@ -1,7 +1,7 @@ package inline import ( - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // ArticleResultBuilder is article result option builder. diff --git a/telegram/message/inline/article_test.go b/telegram/message/inline/article_test.go index 94c58cd336..253d573dde 100644 --- a/telegram/message/inline/article_test.go +++ b/telegram/message/inline/article_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestArticle(t *testing.T) { diff --git a/telegram/message/inline/document.go b/telegram/message/inline/document.go index 4757cbb2d1..328d22b78b 100644 --- a/telegram/message/inline/document.go +++ b/telegram/message/inline/document.go @@ -1,6 +1,6 @@ package inline -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // DocumentResultBuilder is document result option builder. type DocumentResultBuilder struct { diff --git a/telegram/message/inline/document_test.go b/telegram/message/inline/document_test.go index a14a7b63ae..89afb99030 100644 --- a/telegram/message/inline/document_test.go +++ b/telegram/message/inline/document_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestDocument(t *testing.T) { diff --git a/telegram/message/inline/game.go b/telegram/message/inline/game.go index fc3bdbea53..a542c7e510 100644 --- a/telegram/message/inline/game.go +++ b/telegram/message/inline/game.go @@ -1,7 +1,7 @@ package inline import ( - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // GameResultBuilder is game result option builder. diff --git a/telegram/message/inline/game_test.go b/telegram/message/inline/game_test.go index 03cb990bd3..d80935f3a0 100644 --- a/telegram/message/inline/game_test.go +++ b/telegram/message/inline/game_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestGame(t *testing.T) { diff --git a/telegram/message/inline/inline.go b/telegram/message/inline/inline.go index e7f42a0462..5531c39c30 100644 --- a/telegram/message/inline/inline.go +++ b/telegram/message/inline/inline.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // ResultBuilder is inline result builder. diff --git a/telegram/message/inline/inline_test.go b/telegram/message/inline/inline_test.go index f303a18afe..7efd79c49f 100644 --- a/telegram/message/inline/inline_test.go +++ b/telegram/message/inline/inline_test.go @@ -8,10 +8,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgmock" ) func testBuilder(t *testing.T) (*ResultBuilder, *tgmock.Mock) { diff --git a/telegram/message/inline/message_auto_media.go b/telegram/message/inline/message_auto_media.go index 6b9d4586ac..271080504f 100644 --- a/telegram/message/inline/message_auto_media.go +++ b/telegram/message/inline/message_auto_media.go @@ -1,10 +1,10 @@ package inline import ( - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/markup" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/markup" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) // MessageMediaAutoBuilder is a builder of inline result text message. diff --git a/telegram/message/inline/message_game.go b/telegram/message/inline/message_game.go index 838a27532a..5a9dd4c676 100644 --- a/telegram/message/inline/message_game.go +++ b/telegram/message/inline/message_game.go @@ -1,8 +1,8 @@ package inline import ( - "github.com/gotd/td/telegram/message/markup" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/markup" + "github.com/beeper/td/tg" ) // MessageGameBuilder is a builder of inline result game message. diff --git a/telegram/message/inline/message_geo.go b/telegram/message/inline/message_geo.go index ebe2230264..91d3e20146 100644 --- a/telegram/message/inline/message_geo.go +++ b/telegram/message/inline/message_geo.go @@ -3,8 +3,8 @@ package inline import ( "time" - "github.com/gotd/td/telegram/message/markup" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/markup" + "github.com/beeper/td/tg" ) // MessageMediaGeoBuilder is a builder of inline result geo message. diff --git a/telegram/message/inline/message_text.go b/telegram/message/inline/message_text.go index 734296522f..9ab97a4d21 100644 --- a/telegram/message/inline/message_text.go +++ b/telegram/message/inline/message_text.go @@ -1,10 +1,10 @@ package inline import ( - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/markup" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/markup" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) // MessageTextBuilder is a builder of inline result text message. diff --git a/telegram/message/inline/option.go b/telegram/message/inline/option.go index 41979ef413..63fb5aea71 100644 --- a/telegram/message/inline/option.go +++ b/telegram/message/inline/option.go @@ -4,8 +4,8 @@ import ( "io" "strconv" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tg" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tg" ) type resultPageBuilder struct { diff --git a/telegram/message/inline/photo.go b/telegram/message/inline/photo.go index 64ef9427c7..0ab8926aac 100644 --- a/telegram/message/inline/photo.go +++ b/telegram/message/inline/photo.go @@ -1,7 +1,7 @@ package inline import ( - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // PhotoResultBuilder is photo result option builder. diff --git a/telegram/message/inline/photo_test.go b/telegram/message/inline/photo_test.go index f62d644914..2a1a245b5d 100644 --- a/telegram/message/inline/photo_test.go +++ b/telegram/message/inline/photo_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestPhoto(t *testing.T) { diff --git a/telegram/message/inline_test.go b/telegram/message/inline_test.go index e301b99eeb..48ab510810 100644 --- a/telegram/message/inline_test.go +++ b/telegram/message/inline_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestBuilder_InlineResult(t *testing.T) { diff --git a/telegram/message/internal/mkentity/entity.go b/telegram/message/internal/mkentity/entity.go index 092e3166c4..10cf1218b2 100644 --- a/telegram/message/internal/mkentity/entity.go +++ b/telegram/message/internal/mkentity/entity.go @@ -6,7 +6,7 @@ package {{ $.PackageName }} import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) var ( @@ -14,7 +14,7 @@ var ( _ = context.Context(nil) ) -{{- /*gotype: github.com/gotd/td/telegram/message/internal/mkrun.Config*/ -}} +{{- /*gotype: github.com/beeper/td/telegram/message/internal/mkrun.Config*/ -}} {{- range $typ := $.Data }} {{ $helperName := trimPrefix ( trimPrefix $typ.Name "Input" ) "MessageEntity" -}} // {{ $helperName }} creates Formatter of {{ $helperName }} message entity. diff --git a/telegram/message/internal/mkentity/main.go b/telegram/message/internal/mkentity/main.go index badf44d464..0b0e7b41f1 100644 --- a/telegram/message/internal/mkentity/main.go +++ b/telegram/message/internal/mkentity/main.go @@ -6,9 +6,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tdp" - "github.com/gotd/td/telegram/message/internal/mkrun" - "github.com/gotd/td/tg" + "github.com/beeper/td/tdp" + "github.com/beeper/td/telegram/message/internal/mkrun" + "github.com/beeper/td/tg" ) // Field represents type field. diff --git a/telegram/message/internal/mkentity/styling.go b/telegram/message/internal/mkentity/styling.go index a512ffa157..2078a32b02 100644 --- a/telegram/message/internal/mkentity/styling.go +++ b/telegram/message/internal/mkentity/styling.go @@ -6,7 +6,7 @@ package {{ $.PackageName }} import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) var ( @@ -14,7 +14,7 @@ var ( _ = context.Context(nil) ) -{{- /*gotype: github.com/gotd/td/telegram/message/internal/mkrun.Config*/ -}} +{{- /*gotype: github.com/beeper/td/telegram/message/internal/mkrun.Config*/ -}} {{- range $typ := $.Data }} {{ $helperName := trimPrefix ( trimPrefix $typ.Name "Input" ) "MessageEntity" -}} // {{ $helperName }} formats text as {{ $helperName }} entity. diff --git a/telegram/message/internal/mktyping/main.go b/telegram/message/internal/mktyping/main.go index 9c1ce97cf3..89a45f943e 100644 --- a/telegram/message/internal/mktyping/main.go +++ b/telegram/message/internal/mktyping/main.go @@ -7,9 +7,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tdp" - "github.com/gotd/td/telegram/message/internal/mkrun" - "github.com/gotd/td/tg" + "github.com/beeper/td/tdp" + "github.com/beeper/td/telegram/message/internal/mkrun" + "github.com/beeper/td/tg" ) // Field represents type field. @@ -36,7 +36,7 @@ package {{ $.PackageName }} import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) var ( @@ -44,7 +44,7 @@ var ( _ = context.Context(nil) ) -{{- /*gotype: github.com/gotd/td/telegram/message/internal/mkrun.Config*/ -}} +{{- /*gotype: github.com/beeper/td/telegram/message/internal/mkrun.Config*/ -}} {{- range $typ := $.Data }} {{ $helperName := trimSuffix (trimPrefix $typ.Name "SendMessage") "Action" -}} // {{ $helperName }} sends {{ $typ.Name }}. diff --git a/telegram/message/join.go b/telegram/message/join.go index f52f2496b8..318874c03d 100644 --- a/telegram/message/join.go +++ b/telegram/message/join.go @@ -5,10 +5,10 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/internal/deeplink" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/telegram/internal/deeplink" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) // JoinLink joins to private chat using given link or hash. diff --git a/telegram/message/join_example_test.go b/telegram/message/join_example_test.go index 3f677d2fb7..dc002fd35b 100644 --- a/telegram/message/join_example_test.go +++ b/telegram/message/join_example_test.go @@ -6,9 +6,9 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/tg" ) func sendJoin(ctx context.Context) error { diff --git a/telegram/message/join_test.go b/telegram/message/join_test.go index 54758a8ad8..37b934a833 100644 --- a/telegram/message/join_test.go +++ b/telegram/message/join_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestSender_JoinLink(t *testing.T) { diff --git a/telegram/message/keyboard_example_test.go b/telegram/message/keyboard_example_test.go index e77a5a29ad..a8e10685d4 100644 --- a/telegram/message/keyboard_example_test.go +++ b/telegram/message/keyboard_example_test.go @@ -6,10 +6,10 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/markup" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/markup" + "github.com/beeper/td/tg" ) func sendKeyboard(ctx context.Context) error { @@ -24,7 +24,7 @@ func sendKeyboard(ctx context.Context) error { // Uploads and sends keyboard result to the @durovschat. if _, err := sender.Resolve("@durovschat").Row( markup.URL("Blue", "https://github.com/xelaj/mtproto"), - markup.URL("Red", "https://github.com/gotd/td"), + markup.URL("Red", "https://github.com/beeper/td"), ).Text(ctx, "Choose the pill"); err != nil { return err } diff --git a/telegram/message/markup/button.go b/telegram/message/markup/button.go index 73a235f5b8..dbe7e2959d 100644 --- a/telegram/message/markup/button.go +++ b/telegram/message/markup/button.go @@ -1,6 +1,6 @@ package markup -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // Row creates keyboard row. func Row(buttons ...tg.KeyboardButtonClass) tg.KeyboardButtonRow { diff --git a/telegram/message/markup/force_reply.go b/telegram/message/markup/force_reply.go index 194b6f3e4e..c521c8998e 100644 --- a/telegram/message/markup/force_reply.go +++ b/telegram/message/markup/force_reply.go @@ -1,6 +1,6 @@ package markup -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // ForceReply creates markup to force the user to send a reply. func ForceReply(singleUse, selective bool) tg.ReplyMarkupClass { diff --git a/telegram/message/markup/hide.go b/telegram/message/markup/hide.go index fb17695010..cc7ec99d85 100644 --- a/telegram/message/markup/hide.go +++ b/telegram/message/markup/hide.go @@ -1,6 +1,6 @@ package markup -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // Hide creates markup to hide markup. func Hide() tg.ReplyMarkupClass { diff --git a/telegram/message/markup/hide_test.go b/telegram/message/markup/hide_test.go index f990515b00..38b7bf206d 100644 --- a/telegram/message/markup/hide_test.go +++ b/telegram/message/markup/hide_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestHide(t *testing.T) { diff --git a/telegram/message/markup/inline.go b/telegram/message/markup/inline.go index 923b2b362d..b110a7203b 100644 --- a/telegram/message/markup/inline.go +++ b/telegram/message/markup/inline.go @@ -1,6 +1,6 @@ package markup -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // InlineRow creates inline keyboard with single row using given buttons. func InlineRow(buttons ...tg.KeyboardButtonClass) tg.ReplyMarkupClass { diff --git a/telegram/message/markup/inline_test.go b/telegram/message/markup/inline_test.go index 45e37a4ceb..6c26969569 100644 --- a/telegram/message/markup/inline_test.go +++ b/telegram/message/markup/inline_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestInlineRow(t *testing.T) { diff --git a/telegram/message/markup/keyboard.go b/telegram/message/markup/keyboard.go index 7de0431bc2..2e2f2e1fca 100644 --- a/telegram/message/markup/keyboard.go +++ b/telegram/message/markup/keyboard.go @@ -1,7 +1,7 @@ package markup import ( - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // ReplyKeyboardMarkupBuilder is a keyboard markup builder. diff --git a/telegram/message/markup/keyboard_test.go b/telegram/message/markup/keyboard_test.go index 43729567d9..d4f6633adf 100644 --- a/telegram/message/markup/keyboard_test.go +++ b/telegram/message/markup/keyboard_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestSingleRow(t *testing.T) { diff --git a/telegram/message/media.go b/telegram/message/media.go index a7243ded80..43dcf5d2f8 100644 --- a/telegram/message/media.go +++ b/telegram/message/media.go @@ -5,9 +5,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func performTextOptions(media *tg.InputSingleMedia, opts []StyledTextOption) error { diff --git a/telegram/message/media_test.go b/telegram/message/media_test.go index ba089e3812..e893cfa003 100644 --- a/telegram/message/media_test.go +++ b/telegram/message/media_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestBuilder_Album(t *testing.T) { diff --git a/telegram/message/multi.go b/telegram/message/multi.go index fdcc2602ce..04d3bc48fa 100644 --- a/telegram/message/multi.go +++ b/telegram/message/multi.go @@ -3,7 +3,7 @@ package message import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func convertMessageMediaToInput(m tg.MessageMediaClass) (tg.InputMediaClass, error) { diff --git a/telegram/message/peer.go b/telegram/message/peer.go index ff53fbb807..259d1b9b4e 100644 --- a/telegram/message/peer.go +++ b/telegram/message/peer.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" "go.uber.org/atomic" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) type resolvedCache atomic.Value diff --git a/telegram/message/peer/constraint.go b/telegram/message/peer/constraint.go index b1269654d0..c21699553e 100644 --- a/telegram/message/peer/constraint.go +++ b/telegram/message/peer/constraint.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // PromiseDecorator is a decorator of peer promise. diff --git a/telegram/message/peer/constraint_test.go b/telegram/message/peer/constraint_test.go index 849917f4e2..e3cd2ac5eb 100644 --- a/telegram/message/peer/constraint_test.go +++ b/telegram/message/peer/constraint_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func createPromise(peer tg.InputPeerClass) Promise { diff --git a/telegram/message/peer/convert.go b/telegram/message/peer/convert.go index b19ad80d70..da2403f620 100644 --- a/telegram/message/peer/convert.go +++ b/telegram/message/peer/convert.go @@ -1,7 +1,7 @@ package peer import ( - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // ToInputUser converts given peer to input user if possible. diff --git a/telegram/message/peer/extract.go b/telegram/message/peer/extract.go index 5be0b32456..b61bddb470 100644 --- a/telegram/message/peer/extract.go +++ b/telegram/message/peer/extract.go @@ -3,7 +3,7 @@ package peer import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Entities is simple peer entities storage. diff --git a/telegram/message/peer/extract_test.go b/telegram/message/peer/extract_test.go index 1151271d87..1dfe1fa11e 100644 --- a/telegram/message/peer/extract_test.go +++ b/telegram/message/peer/extract_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type badPeer struct { diff --git a/telegram/message/peer/list.go b/telegram/message/peer/list.go index b727196013..ce391040f0 100644 --- a/telegram/message/peer/list.go +++ b/telegram/message/peer/list.go @@ -3,7 +3,7 @@ package peer import ( "time" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type nodeData struct { diff --git a/telegram/message/peer/lru.go b/telegram/message/peer/lru.go index 8934d2871b..978213cdb6 100644 --- a/telegram/message/peer/lru.go +++ b/telegram/message/peer/lru.go @@ -7,8 +7,8 @@ import ( "golang.org/x/sync/singleflight" - "github.com/gotd/td/clock" - "github.com/gotd/td/tg" + "github.com/beeper/td/clock" + "github.com/beeper/td/tg" ) // LRUResolver is simple decorator for Resolver to cache result in LRU. diff --git a/telegram/message/peer/lru_example_test.go b/telegram/message/peer/lru_example_test.go index 9bb8cc5df0..b30e585d29 100644 --- a/telegram/message/peer/lru_example_test.go +++ b/telegram/message/peer/lru_example_test.go @@ -7,10 +7,10 @@ import ( "os/signal" "time" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) func resolveLRU(ctx context.Context) error { diff --git a/telegram/message/peer/lru_test.go b/telegram/message/peer/lru_test.go index 5f4fe1c8a3..25227fe171 100644 --- a/telegram/message/peer/lru_test.go +++ b/telegram/message/peer/lru_test.go @@ -11,8 +11,8 @@ import ( "github.com/gotd/neo" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" ) func TestLRU(t *testing.T) { diff --git a/telegram/message/peer/resolve.go b/telegram/message/peer/resolve.go index ef9d7b349f..95d26d2609 100644 --- a/telegram/message/peer/resolve.go +++ b/telegram/message/peer/resolve.go @@ -6,9 +6,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/ascii" - "github.com/gotd/td/telegram/internal/deeplink" - "github.com/gotd/td/tg" + "github.com/beeper/td/ascii" + "github.com/beeper/td/telegram/internal/deeplink" + "github.com/beeper/td/tg" ) // Promise is a peer promise. diff --git a/telegram/message/peer/resolve_test.go b/telegram/message/peer/resolve_test.go index 8a02f2d5ab..e3b3622089 100644 --- a/telegram/message/peer/resolve_test.go +++ b/telegram/message/peer/resolve_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func resolver(t *testing.T, expectedDomain string, expected tg.InputPeerClass) Resolver { diff --git a/telegram/message/peer/resolver.go b/telegram/message/peer/resolver.go index 2a96afbc54..c1d2573df1 100644 --- a/telegram/message/peer/resolver.go +++ b/telegram/message/peer/resolver.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Resolver is an abstraction to resolve domains and Telegram deeplinks. diff --git a/telegram/message/peer/resolver_test.go b/telegram/message/peer/resolver_test.go index d1364d71ae..aa13c7d5b7 100644 --- a/telegram/message/peer/resolver_test.go +++ b/telegram/message/peer/resolver_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgmock" ) func Test_plainResolver_Resolve(t *testing.T) { diff --git a/telegram/message/peer/singleflight.go b/telegram/message/peer/singleflight.go index 31f4c610cb..fa528d8585 100644 --- a/telegram/message/peer/singleflight.go +++ b/telegram/message/peer/singleflight.go @@ -5,7 +5,7 @@ import ( "golang.org/x/sync/singleflight" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type singleFlight struct { diff --git a/telegram/message/peer_example_test.go b/telegram/message/peer_example_test.go index 5038f55b64..8d17b58d51 100644 --- a/telegram/message/peer_example_test.go +++ b/telegram/message/peer_example_test.go @@ -6,10 +6,10 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) func resolve(ctx context.Context) error { diff --git a/telegram/message/peer_test.go b/telegram/message/peer_test.go index 386b7dd673..949250f639 100644 --- a/telegram/message/peer_test.go +++ b/telegram/message/peer_test.go @@ -7,8 +7,8 @@ import ( "github.com/go-faster/errors" "github.com/stretchr/testify/require" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) type testResolver struct { diff --git a/telegram/message/peer_unpack.go b/telegram/message/peer_unpack.go index e606fb7656..3107d7c3b7 100644 --- a/telegram/message/peer_unpack.go +++ b/telegram/message/peer_unpack.go @@ -5,8 +5,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) // AsInputPeer returns resolve result as InputPeerClass. diff --git a/telegram/message/peer_unpack_test.go b/telegram/message/peer_unpack_test.go index d197aa9052..1dc7d1c1ff 100644 --- a/telegram/message/peer_unpack_test.go +++ b/telegram/message/peer_unpack_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestUnpack(t *testing.T) { diff --git a/telegram/message/photo.go b/telegram/message/photo.go index 207a0f0e71..0aa8486aa0 100644 --- a/telegram/message/photo.go +++ b/telegram/message/photo.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // PhotoBuilder is a Photo media option. diff --git a/telegram/message/photo_test.go b/telegram/message/photo_test.go index f99902d40a..4504b6ec36 100644 --- a/telegram/message/photo_test.go +++ b/telegram/message/photo_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestPhoto(t *testing.T) { diff --git a/telegram/message/poll.go b/telegram/message/poll.go index d82d88b74c..1c71bafd0a 100644 --- a/telegram/message/poll.go +++ b/telegram/message/poll.go @@ -7,10 +7,10 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/crypto" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) type pollAnswerBuilder struct { diff --git a/telegram/message/poll_test.go b/telegram/message/poll_test.go index 864f085c84..16b9713d33 100644 --- a/telegram/message/poll_test.go +++ b/telegram/message/poll_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func TestPoll(t *testing.T) { diff --git a/telegram/message/report.go b/telegram/message/report.go index ee2c2c50f9..39bf5fc220 100644 --- a/telegram/message/report.go +++ b/telegram/message/report.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // ReportBuilder is a reporting messages helper. diff --git a/telegram/message/report_test.go b/telegram/message/report_test.go index db91c1140a..9a774c9e78 100644 --- a/telegram/message/report_test.go +++ b/telegram/message/report_test.go @@ -8,10 +8,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func expectSendReport(t *testing.T, option []byte, mock *tgmock.Mock, id int, msg string) { diff --git a/telegram/message/request.go b/telegram/message/request.go index 3d4d008932..333605ac9e 100644 --- a/telegram/message/request.go +++ b/telegram/message/request.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // RequestBuilder is an intermediate builder to make different RPC calls using Sender. diff --git a/telegram/message/request_test.go b/telegram/message/request_test.go index 1d94f8c84a..0705b29c4a 100644 --- a/telegram/message/request_test.go +++ b/telegram/message/request_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestRequestBuilder_Reaction(t *testing.T) { diff --git a/telegram/message/scheduled.go b/telegram/message/scheduled.go index 36dc7d6055..c454a28d7a 100644 --- a/telegram/message/scheduled.go +++ b/telegram/message/scheduled.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // ScheduledManager is a scheduled messages manager. diff --git a/telegram/message/scheduled_test.go b/telegram/message/scheduled_test.go index 1e5b5a53fe..f856e670a8 100644 --- a/telegram/message/scheduled_test.go +++ b/telegram/message/scheduled_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestScheduledManager_Send(t *testing.T) { diff --git a/telegram/message/sender.go b/telegram/message/sender.go index 2df3b83109..8dbd053d74 100644 --- a/telegram/message/sender.go +++ b/telegram/message/sender.go @@ -6,10 +6,10 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/telegram/uploader" - "github.com/gotd/td/tg" + "github.com/beeper/td/crypto" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/telegram/uploader" + "github.com/beeper/td/tg" ) // Sender is a message sending helper. diff --git a/telegram/message/stickers.go b/telegram/message/stickers.go index 846649a6ea..4411e4bd1d 100644 --- a/telegram/message/stickers.go +++ b/telegram/message/stickers.go @@ -3,7 +3,7 @@ package message import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // UploadedSticker creates new UploadedStickerBuilder to create sticker attachment. diff --git a/telegram/message/style.go b/telegram/message/style.go index 9e10fa61b7..d202284682 100644 --- a/telegram/message/style.go +++ b/telegram/message/style.go @@ -1,7 +1,7 @@ package message import ( - "github.com/gotd/td/telegram/message/styling" + "github.com/beeper/td/telegram/message/styling" ) // StyledTextOption is an option for styling text. diff --git a/telegram/message/style_example_test.go b/telegram/message/style_example_test.go index ee8a729f25..dc25f2f37f 100644 --- a/telegram/message/style_example_test.go +++ b/telegram/message/style_example_test.go @@ -6,10 +6,10 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func sendStyledText(ctx context.Context) error { diff --git a/telegram/message/styling/builder.go b/telegram/message/styling/builder.go index 49304c4fd8..d8e9aa1f71 100644 --- a/telegram/message/styling/builder.go +++ b/telegram/message/styling/builder.go @@ -3,7 +3,7 @@ package styling import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/entity" ) type textBuilder struct { diff --git a/telegram/message/styling/option.go b/telegram/message/styling/option.go index 2e1f9c82f7..048f49d17e 100644 --- a/telegram/message/styling/option.go +++ b/telegram/message/styling/option.go @@ -1,7 +1,7 @@ package styling import ( - "github.com/gotd/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/entity" ) // StyledTextOption is an option for styling text. @@ -40,4 +40,4 @@ func Custom(cb func(eb *entity.Builder) error) StyledTextOption { } } -//go:generate go run github.com/gotd/td/telegram/message/internal/mkentity -template styling -output options.gen.go +//go:generate go run github.com/beeper/td/telegram/message/internal/mkentity -template styling -output options.gen.go diff --git a/telegram/message/styling/options.gen.go b/telegram/message/styling/options.gen.go index 4c4b9b2589..4a7d943aff 100644 --- a/telegram/message/styling/options.gen.go +++ b/telegram/message/styling/options.gen.go @@ -4,7 +4,7 @@ package styling import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) var ( diff --git a/telegram/message/text.go b/telegram/message/text.go index 3f8b105626..803aeefdb6 100644 --- a/telegram/message/text.go +++ b/telegram/message/text.go @@ -5,9 +5,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func (b *Builder) sendRequest( diff --git a/telegram/message/text_example_test.go b/telegram/message/text_example_test.go index 23e9c57684..0409646503 100644 --- a/telegram/message/text_example_test.go +++ b/telegram/message/text_example_test.go @@ -6,9 +6,9 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/styling" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/styling" ) func sendText(ctx context.Context) error { diff --git a/telegram/message/text_test.go b/telegram/message/text_test.go index 05541d925f..9682148d2b 100644 --- a/telegram/message/text_test.go +++ b/telegram/message/text_test.go @@ -7,9 +7,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/telegram/message/styling" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/telegram/message/styling" + "github.com/beeper/td/tg" ) func TestBuilder_Text(t *testing.T) { diff --git a/telegram/message/types.go b/telegram/message/types.go index ecddf9e787..4313cc3d40 100644 --- a/telegram/message/types.go +++ b/telegram/message/types.go @@ -3,7 +3,7 @@ package message import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type multiMediaBuilder struct { diff --git a/telegram/message/typing.gen.go b/telegram/message/typing.gen.go index cee560843f..b23fc95c4e 100644 --- a/telegram/message/typing.gen.go +++ b/telegram/message/typing.gen.go @@ -4,7 +4,7 @@ package message import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) var ( diff --git a/telegram/message/typing.go b/telegram/message/typing.go index 974396a082..585aac76eb 100644 --- a/telegram/message/typing.go +++ b/telegram/message/typing.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // TypingActionBuilder is a helper to create and send typing actions. @@ -52,7 +52,7 @@ func (b *TypingActionBuilder) Custom(ctx context.Context, action tg.SendMessageA return b.send(ctx, action) } -//go:generate go run github.com/gotd/td/telegram/message/internal/mktyping -output typing.gen.go +//go:generate go run github.com/beeper/td/telegram/message/internal/mktyping -output typing.gen.go // TypingAction creates TypingActionBuilder. func (b *RequestBuilder) TypingAction() *TypingActionBuilder { diff --git a/telegram/message/typing_test.go b/telegram/message/typing_test.go index 5655c9d34f..06ab406dbe 100644 --- a/telegram/message/typing_test.go +++ b/telegram/message/typing_test.go @@ -7,10 +7,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func expectSendSetTyping(t *testing.T, action tg.SendMessageActionClass, mock *tgmock.Mock, threadID int) { diff --git a/telegram/message/unpack/message.go b/telegram/message/unpack/message.go index ac1a277112..a5679b679f 100644 --- a/telegram/message/unpack/message.go +++ b/telegram/message/unpack/message.go @@ -3,8 +3,8 @@ package unpack import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/internal/upconv" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/internal/upconv" + "github.com/beeper/td/tg" ) func extractClass(u tg.UpdateClass) (tg.MessageClass, bool) { diff --git a/telegram/message/unpack/message_example_test.go b/telegram/message/unpack/message_example_test.go index bc71eb729c..24ec023f6a 100644 --- a/telegram/message/unpack/message_example_test.go +++ b/telegram/message/unpack/message_example_test.go @@ -6,10 +6,10 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message" - "github.com/gotd/td/telegram/message/unpack" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message" + "github.com/beeper/td/telegram/message/unpack" + "github.com/beeper/td/tg" ) func unpackMessage(ctx context.Context) error { diff --git a/telegram/message/unpack/message_test.go b/telegram/message/unpack/message_test.go index 82dcdc5bb3..c769758c84 100644 --- a/telegram/message/unpack/message_test.go +++ b/telegram/message/unpack/message_test.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestMessage(t *testing.T) { diff --git a/telegram/message/upload.go b/telegram/message/upload.go index 2743404cd8..49af1f5a5e 100644 --- a/telegram/message/upload.go +++ b/telegram/message/upload.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Upload creates new UploadBuilder to upload and send attachments. diff --git a/telegram/message/upload_test.go b/telegram/message/upload_test.go index 1f2a48293e..edeaee2aae 100644 --- a/telegram/message/upload_test.go +++ b/telegram/message/upload_test.go @@ -8,9 +8,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/telegram/uploader" - "github.com/gotd/td/telegram/uploader/source" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/uploader" + "github.com/beeper/td/telegram/uploader/source" + "github.com/beeper/td/tg" ) type mockUploader struct { diff --git a/telegram/message/video.go b/telegram/message/video.go index 553dc6e48d..47d8e28f08 100644 --- a/telegram/message/video.go +++ b/telegram/message/video.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Video creates new VideoDocumentBuilder to create video attachment. diff --git a/telegram/message/video_test.go b/telegram/message/video_test.go index d21c4c2854..9db7644cbc 100644 --- a/telegram/message/video_test.go +++ b/telegram/message/video_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestRoundVideo(t *testing.T) { diff --git a/telegram/middleware.go b/telegram/middleware.go index 3828cb6ae5..a9de1e6c06 100644 --- a/telegram/middleware.go +++ b/telegram/middleware.go @@ -3,8 +3,8 @@ package telegram import ( "context" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) // InvokeFunc implements tg.Invoker as function. diff --git a/telegram/middleware_test.go b/telegram/middleware_test.go index e68bb5ed67..0dd801b400 100644 --- a/telegram/middleware_test.go +++ b/telegram/middleware_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestMiddlewareOrder(t *testing.T) { diff --git a/telegram/migrate_to_dc.go b/telegram/migrate_to_dc.go index f8f0d03e52..239731c75f 100644 --- a/telegram/migrate_to_dc.go +++ b/telegram/migrate_to_dc.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func (c *Client) ensureRestart(ctx context.Context) error { diff --git a/telegram/migrate_to_dc_test.go b/telegram/migrate_to_dc_test.go index 5937dfa114..86beef7d13 100644 --- a/telegram/migrate_to_dc_test.go +++ b/telegram/migrate_to_dc_test.go @@ -11,15 +11,15 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" - "github.com/gotd/td/bin" - "github.com/gotd/td/clock" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/pool" - "github.com/gotd/td/rpc" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram/internal/manager" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/clock" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/pool" + "github.com/beeper/td/rpc" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram/internal/manager" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) type migrationTestHandler func(id int64, dc int, body bin.Encoder) (bin.Encoder, error) diff --git a/telegram/mtproxy_example_test.go b/telegram/mtproxy_example_test.go index 9ab64d2926..c6531805f3 100644 --- a/telegram/mtproxy_example_test.go +++ b/telegram/mtproxy_example_test.go @@ -9,9 +9,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/tg" ) func connectViaMTProxy(ctx context.Context) error { diff --git a/telegram/options.go b/telegram/options.go index 6d7b1aed00..bb06ff922f 100644 --- a/telegram/options.go +++ b/telegram/options.go @@ -9,13 +9,13 @@ import ( "go.opentelemetry.io/otel/trace" "go.uber.org/zap" - "github.com/gotd/td/clock" - "github.com/gotd/td/crypto" - "github.com/gotd/td/exchange" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/proto" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/tg" + "github.com/beeper/td/clock" + "github.com/beeper/td/crypto" + "github.com/beeper/td/exchange" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/proto" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/tg" ) type ( diff --git a/telegram/peers/apply.go b/telegram/peers/apply.go index d7feef0b92..251754a102 100644 --- a/telegram/peers/apply.go +++ b/telegram/peers/apply.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" "go.uber.org/multierr" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) func (m *Manager) applyUsers(ctx context.Context, input ...tg.UserClass) error { diff --git a/telegram/peers/apply_test.go b/telegram/peers/apply_test.go index b7f0a03517..caa683f900 100644 --- a/telegram/peers/apply_test.go +++ b/telegram/peers/apply_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestManager_applyChats(t *testing.T) { diff --git a/telegram/peers/atomic.go b/telegram/peers/atomic.go index 0eb9ea0a51..879aa4c050 100644 --- a/telegram/peers/atomic.go +++ b/telegram/peers/atomic.go @@ -3,7 +3,7 @@ package peers import ( "go.uber.org/atomic" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type atomicUser struct { diff --git a/telegram/peers/bot.go b/telegram/peers/bot.go index 1b8f97bc3b..c99df46e9e 100644 --- a/telegram/peers/bot.go +++ b/telegram/peers/bot.go @@ -3,7 +3,7 @@ package peers import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Bot is a bot User. diff --git a/telegram/peers/bot_test.go b/telegram/peers/bot_test.go index 9dc835b1eb..cba1d585fd 100644 --- a/telegram/peers/bot_test.go +++ b/telegram/peers/bot_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestBot_BotInfo(t *testing.T) { diff --git a/telegram/peers/broadcast.go b/telegram/peers/broadcast.go index bde5a913e0..030841d505 100644 --- a/telegram/peers/broadcast.go +++ b/telegram/peers/broadcast.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Broadcast is a broadcast Channel. diff --git a/telegram/peers/broadcast_test.go b/telegram/peers/broadcast_test.go index b9c9a7b9bb..dd91f92913 100644 --- a/telegram/peers/broadcast_test.go +++ b/telegram/peers/broadcast_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func getTestBroadcast() *tg.Channel { diff --git a/telegram/peers/channel.go b/telegram/peers/channel.go index a7b90ce8f7..f4c3a87b5b 100644 --- a/telegram/peers/channel.go +++ b/telegram/peers/channel.go @@ -5,8 +5,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) // Channel is channel peer. diff --git a/telegram/peers/channel_test.go b/telegram/peers/channel_test.go index 94b89f39e2..f7f42820d7 100644 --- a/telegram/peers/channel_test.go +++ b/telegram/peers/channel_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestChannelGetters(t *testing.T) { diff --git a/telegram/peers/chat.go b/telegram/peers/chat.go index 28974f6df8..e7bd85a26a 100644 --- a/telegram/peers/chat.go +++ b/telegram/peers/chat.go @@ -5,8 +5,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) // Chat is chat peer. diff --git a/telegram/peers/chat_test.go b/telegram/peers/chat_test.go index c873a810a9..268c692b1e 100644 --- a/telegram/peers/chat_test.go +++ b/telegram/peers/chat_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestChatGetters(t *testing.T) { diff --git a/telegram/peers/errors.go b/telegram/peers/errors.go index ba5dc21049..c470836200 100644 --- a/telegram/peers/errors.go +++ b/telegram/peers/errors.go @@ -3,7 +3,7 @@ package peers import ( "fmt" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // PhoneNotFoundError is returned when Manager unable to find contact with given phone. diff --git a/telegram/peers/id.go b/telegram/peers/id.go index d5afd5b3f7..9f1edf302d 100644 --- a/telegram/peers/id.go +++ b/telegram/peers/id.go @@ -5,9 +5,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) // ResolveTDLibID creates Peer using given constant.TDLibPeerID. diff --git a/telegram/peers/integration.go b/telegram/peers/integration.go index bf018e9dbc..5129821be7 100644 --- a/telegram/peers/integration.go +++ b/telegram/peers/integration.go @@ -5,10 +5,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/message/entity" - "github.com/gotd/td/telegram/updates" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/message/entity" + "github.com/beeper/td/telegram/updates" + "github.com/beeper/td/tg" ) var _ updates.AccessHasher = (*Manager)(nil) diff --git a/telegram/peers/invite_link.go b/telegram/peers/invite_link.go index 63130b74c0..81c0ccf2af 100644 --- a/telegram/peers/invite_link.go +++ b/telegram/peers/invite_link.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // InviteLink represents invite link. diff --git a/telegram/peers/invite_links.go b/telegram/peers/invite_links.go index 1fe4c239d1..2ba001d5b1 100644 --- a/telegram/peers/invite_links.go +++ b/telegram/peers/invite_links.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // InviteLinks represents invite links of Chat or Channel. diff --git a/telegram/peers/invite_links_test.go b/telegram/peers/invite_links_test.go index bf373c9263..ddffea03e2 100644 --- a/telegram/peers/invite_links_test.go +++ b/telegram/peers/invite_links_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func testExportLinkOptions() ExportLinkOptions { diff --git a/telegram/peers/join.go b/telegram/peers/join.go index 27ca7a921d..b7470633d3 100644 --- a/telegram/peers/join.go +++ b/telegram/peers/join.go @@ -5,8 +5,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/internal/deeplink" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/internal/deeplink" + "github.com/beeper/td/tg" ) type updateWithChats interface { diff --git a/telegram/peers/join_test.go b/telegram/peers/join_test.go index b47c14dbe1..a4523baf4d 100644 --- a/telegram/peers/join_test.go +++ b/telegram/peers/join_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func TestManager_ImportInvite(t *testing.T) { diff --git a/telegram/peers/manager.go b/telegram/peers/manager.go index e3c5bd6b79..4c7e0ce828 100644 --- a/telegram/peers/manager.go +++ b/telegram/peers/manager.go @@ -8,7 +8,7 @@ import ( "go.uber.org/zap" "golang.org/x/sync/singleflight" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Manager is peer manager. diff --git a/telegram/peers/manager_example_test.go b/telegram/peers/manager_example_test.go index 61c4ce7d1c..9db80aeafc 100644 --- a/telegram/peers/manager_example_test.go +++ b/telegram/peers/manager_example_test.go @@ -6,10 +6,10 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/peers" - "github.com/gotd/td/telegram/updates" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/peers" + "github.com/beeper/td/telegram/updates" + "github.com/beeper/td/tg" ) func ExampleManager() { diff --git a/telegram/peers/manager_test.go b/telegram/peers/manager_test.go index e988971c36..a38a1173f8 100644 --- a/telegram/peers/manager_test.go +++ b/telegram/peers/manager_test.go @@ -6,9 +6,9 @@ import ( "go.uber.org/zap/zaptest" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgmock" ) func testManager(t *testing.T) (*tgmock.Mock, *Manager) { diff --git a/telegram/peers/members/channel.go b/telegram/peers/members/channel.go index c9e292f274..c44818f384 100644 --- a/telegram/peers/members/channel.go +++ b/telegram/peers/members/channel.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/peers" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/peers" + "github.com/beeper/td/tg" ) // ChannelMembers is channel Members. diff --git a/telegram/peers/members/channel_member.go b/telegram/peers/members/channel_member.go index 0e40098fdf..d23d976fbf 100644 --- a/telegram/peers/members/channel_member.go +++ b/telegram/peers/members/channel_member.go @@ -4,8 +4,8 @@ import ( "context" "time" - "github.com/gotd/td/telegram/peers" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/peers" + "github.com/beeper/td/tg" ) // ChannelMember is channel Member. diff --git a/telegram/peers/members/channel_query.go b/telegram/peers/members/channel_query.go index 024a5d84c1..8b53ca9a3f 100644 --- a/telegram/peers/members/channel_query.go +++ b/telegram/peers/members/channel_query.go @@ -1,8 +1,8 @@ package members import ( - "github.com/gotd/td/telegram/peers" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/peers" + "github.com/beeper/td/tg" ) // ChannelQuery is builder for channel members querying. diff --git a/telegram/peers/members/channel_test.go b/telegram/peers/members/channel_test.go index a544607122..ff29118391 100644 --- a/telegram/peers/members/channel_test.go +++ b/telegram/peers/members/channel_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" ) func TestChannelMembers_Count(t *testing.T) { diff --git a/telegram/peers/members/chat.go b/telegram/peers/members/chat.go index 82b2b490b8..7a7045fa84 100644 --- a/telegram/peers/members/chat.go +++ b/telegram/peers/members/chat.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/peers" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/peers" + "github.com/beeper/td/tg" ) // ChatMembers is chat Members. diff --git a/telegram/peers/members/chat_member.go b/telegram/peers/members/chat_member.go index e0639b45c6..73b72c7bc2 100644 --- a/telegram/peers/members/chat_member.go +++ b/telegram/peers/members/chat_member.go @@ -4,8 +4,8 @@ import ( "context" "time" - "github.com/gotd/td/telegram/peers" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/peers" + "github.com/beeper/td/tg" ) // ChatMember is chat Member. diff --git a/telegram/peers/members/chat_test.go b/telegram/peers/members/chat_test.go index 0d25134e06..0e30672967 100644 --- a/telegram/peers/members/chat_test.go +++ b/telegram/peers/members/chat_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestChatMembers_Count(t *testing.T) { diff --git a/telegram/peers/members/common.go b/telegram/peers/members/common.go index fb199db4b0..c1866303ca 100644 --- a/telegram/peers/members/common.go +++ b/telegram/peers/members/common.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func convertInputUserToInputPeer(p tg.InputUserClass) tg.InputPeerClass { diff --git a/telegram/peers/members/errors.go b/telegram/peers/members/errors.go index 0f646eb09d..add33f6556 100644 --- a/telegram/peers/members/errors.go +++ b/telegram/peers/members/errors.go @@ -1,7 +1,7 @@ package members import ( - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // ChatInfoUnavailableError reports that chat members info is not available. diff --git a/telegram/peers/members/members.go b/telegram/peers/members/members.go index dfa4caac14..1cd2a1af95 100644 --- a/telegram/peers/members/members.go +++ b/telegram/peers/members/members.go @@ -5,8 +5,8 @@ import ( "context" "time" - "github.com/gotd/td/telegram/peers" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/peers" + "github.com/beeper/td/tg" ) var _ = []Member{ diff --git a/telegram/peers/members/members_test.go b/telegram/peers/members/members_test.go index b88f05301c..ef73c3cbe4 100644 --- a/telegram/peers/members/members_test.go +++ b/telegram/peers/members/members_test.go @@ -8,10 +8,10 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" - "github.com/gotd/td/telegram/peers" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/telegram/peers" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgmock" ) func testManager(t *testing.T) (*tgmock.Mock, *peers.Manager) { diff --git a/telegram/peers/members/rights.go b/telegram/peers/members/rights.go index 4f3aead998..27fa582746 100644 --- a/telegram/peers/members/rights.go +++ b/telegram/peers/members/rights.go @@ -3,7 +3,7 @@ package members import ( "time" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // AdminRights represents admin right settings. diff --git a/telegram/peers/members/rights_test.go b/telegram/peers/members/rights_test.go index b738bf139b..9c94585c1a 100644 --- a/telegram/peers/members/rights_test.go +++ b/telegram/peers/members/rights_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestMemberRights_ApplyFor(t *testing.T) { diff --git a/telegram/peers/memory_storage.go b/telegram/peers/memory_storage.go index d439917893..6d91c386ef 100644 --- a/telegram/peers/memory_storage.go +++ b/telegram/peers/memory_storage.go @@ -6,7 +6,7 @@ import ( "go.uber.org/atomic" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // InmemoryStorage is basic in-memory Storage implementation. diff --git a/telegram/peers/memory_storage_test.go b/telegram/peers/memory_storage_test.go index b12f6d1b9a..e3cefa09f5 100644 --- a/telegram/peers/memory_storage_test.go +++ b/telegram/peers/memory_storage_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestMemoryStorage(t *testing.T) { diff --git a/telegram/peers/multichat.go b/telegram/peers/multichat.go index 69588ef597..4177c0a090 100644 --- a/telegram/peers/multichat.go +++ b/telegram/peers/multichat.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func (m *Manager) editAbout(ctx context.Context, p tg.InputPeerClass, about string) error { diff --git a/telegram/peers/multichat_test.go b/telegram/peers/multichat_test.go index a7d52cc490..ea6f4e5320 100644 --- a/telegram/peers/multichat_test.go +++ b/telegram/peers/multichat_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) type multiChat interface { diff --git a/telegram/peers/options.go b/telegram/peers/options.go index d926d36328..5af1466853 100644 --- a/telegram/peers/options.go +++ b/telegram/peers/options.go @@ -4,7 +4,7 @@ import ( "go.uber.org/zap" "golang.org/x/sync/singleflight" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Options is options of Manager diff --git a/telegram/peers/peerid_map.go b/telegram/peers/peerid_map.go index ee42af158a..f5a438ebc6 100644 --- a/telegram/peers/peerid_map.go +++ b/telegram/peers/peerid_map.go @@ -1,7 +1,7 @@ package peers import ( - "github.com/gotd/td/constant" + "github.com/beeper/td/constant" ) type peerIDSet struct { diff --git a/telegram/peers/peers.go b/telegram/peers/peers.go index 5b30dc7ec5..3cbd4a0b2e 100644 --- a/telegram/peers/peers.go +++ b/telegram/peers/peers.go @@ -9,8 +9,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) // Peer represents generic peer. diff --git a/telegram/peers/peers_test.go b/telegram/peers/peers_test.go index 768e2a4050..1e91effb13 100644 --- a/telegram/peers/peers_test.go +++ b/telegram/peers/peers_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestReport(t *testing.T) { diff --git a/telegram/peers/query.go b/telegram/peers/query.go index 4fd8b91786..51a1a6c1b8 100644 --- a/telegram/peers/query.go +++ b/telegram/peers/query.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func (m *Manager) getIDFromInputUser(p tg.InputUserClass) (int64, bool) { diff --git a/telegram/peers/query_full.go b/telegram/peers/query_full.go index 7c8e7f202c..f7b0959733 100644 --- a/telegram/peers/query_full.go +++ b/telegram/peers/query_full.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // getUserFull gets tg.UserFull using given tg.InputUserClass. diff --git a/telegram/peers/query_full_test.go b/telegram/peers/query_full_test.go index 3715820560..817e0f79a6 100644 --- a/telegram/peers/query_full_test.go +++ b/telegram/peers/query_full_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestManager_getUserFull(t *testing.T) { diff --git a/telegram/peers/query_test.go b/telegram/peers/query_test.go index 3c84fecebf..1b3372df7e 100644 --- a/telegram/peers/query_test.go +++ b/telegram/peers/query_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestManager_getUser(t *testing.T) { diff --git a/telegram/peers/resolve.go b/telegram/peers/resolve.go index 4ed0a04d90..3252a4d400 100644 --- a/telegram/peers/resolve.go +++ b/telegram/peers/resolve.go @@ -6,9 +6,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/ascii" - "github.com/gotd/td/telegram/internal/deeplink" - "github.com/gotd/td/tg" + "github.com/beeper/td/ascii" + "github.com/beeper/td/telegram/internal/deeplink" + "github.com/beeper/td/tg" ) // Resolve uses given string to create new peer promise. diff --git a/telegram/peers/resolve_test.go b/telegram/peers/resolve_test.go index 8ae075fff8..37cb2e68b8 100644 --- a/telegram/peers/resolve_test.go +++ b/telegram/peers/resolve_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestManager_findPeerClass(t *testing.T) { diff --git a/telegram/peers/search.go b/telegram/peers/search.go index d55d42e124..2a888fae1b 100644 --- a/telegram/peers/search.go +++ b/telegram/peers/search.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // SearchResult is Search query result. diff --git a/telegram/peers/search_test.go b/telegram/peers/search_test.go index 6a1245ccc6..c0c57f74a0 100644 --- a/telegram/peers/search_test.go +++ b/telegram/peers/search_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestManager_Search(t *testing.T) { diff --git a/telegram/peers/self.go b/telegram/peers/self.go index 1ba33d1d20..5241c9bdb3 100644 --- a/telegram/peers/self.go +++ b/telegram/peers/self.go @@ -3,7 +3,7 @@ package peers import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Self returns current User. diff --git a/telegram/peers/self_test.go b/telegram/peers/self_test.go index a584a0831b..a34bf16db7 100644 --- a/telegram/peers/self_test.go +++ b/telegram/peers/self_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestManager_Self(t *testing.T) { diff --git a/telegram/peers/storage.go b/telegram/peers/storage.go index e4c925860b..8324f16136 100644 --- a/telegram/peers/storage.go +++ b/telegram/peers/storage.go @@ -3,7 +3,7 @@ package peers import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Value is storage value. diff --git a/telegram/peers/supergroup.go b/telegram/peers/supergroup.go index dd14272d01..42d0999c56 100644 --- a/telegram/peers/supergroup.go +++ b/telegram/peers/supergroup.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Supergroup is a supergroup Channel. diff --git a/telegram/peers/supergroup_test.go b/telegram/peers/supergroup_test.go index 9e9ebe12d1..ffb24eba2b 100644 --- a/telegram/peers/supergroup_test.go +++ b/telegram/peers/supergroup_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func getTestSuperGroup() *tg.Channel { diff --git a/telegram/peers/update.go b/telegram/peers/update.go index a23111ebe3..3aedf405e6 100644 --- a/telegram/peers/update.go +++ b/telegram/peers/update.go @@ -1,8 +1,8 @@ package peers import ( - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) func userPeerID(id int64) (r constant.TDLibPeerID) { diff --git a/telegram/peers/user.go b/telegram/peers/user.go index a11d750d74..21b4a57473 100644 --- a/telegram/peers/user.go +++ b/telegram/peers/user.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" ) // User is user peer. diff --git a/telegram/peers/user_test.go b/telegram/peers/user_test.go index 9727290144..faa5a61d61 100644 --- a/telegram/peers/user_test.go +++ b/telegram/peers/user_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestUserGetters(t *testing.T) { diff --git a/telegram/pool.go b/telegram/pool.go index b49113f036..cfc1f7fce2 100644 --- a/telegram/pool.go +++ b/telegram/pool.go @@ -6,13 +6,13 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/pool" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/telegram/internal/manager" - "github.com/gotd/td/tg" - "github.com/gotd/td/transport" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/pool" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/telegram/internal/manager" + "github.com/beeper/td/tg" + "github.com/beeper/td/transport" ) // CloseInvoker is a closeable tg.Invoker. diff --git a/telegram/query/cached/compute_hash.go b/telegram/query/cached/compute_hash.go index 08dcf7924a..9a2684ab42 100644 --- a/telegram/query/cached/compute_hash.go +++ b/telegram/query/cached/compute_hash.go @@ -3,8 +3,8 @@ package cached import ( "sort" - "github.com/gotd/td/telegram/query/hasher" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/query/hasher" + "github.com/beeper/td/tg" ) func (s *ContactsGetContacts) computeHash(v *tg.ContactsContacts) int64 { diff --git a/telegram/query/cached/generate.go b/telegram/query/cached/generate.go index 8290888e89..7f6d546862 100644 --- a/telegram/query/cached/generate.go +++ b/telegram/query/cached/generate.go @@ -1,3 +1,3 @@ package cached -//go:generate go run github.com/gotd/td/telegram/query/internal/cachedgen -package=cached -out=queries.gen.go +//go:generate go run github.com/beeper/td/telegram/query/internal/cachedgen -package=cached -out=queries.gen.go diff --git a/telegram/query/cached/queries.gen.go b/telegram/query/cached/queries.gen.go index 6387bbba10..210a66cc17 100644 --- a/telegram/query/cached/queries.gen.go +++ b/telegram/query/cached/queries.gen.go @@ -8,7 +8,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // No-op definition for keeping imports. diff --git a/telegram/query/channels/participants/iter.go b/telegram/query/channels/participants/iter.go index 0f1523d183..cdb3cb1ba4 100644 --- a/telegram/query/channels/participants/iter.go +++ b/telegram/query/channels/participants/iter.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) // Elem is a channel participants iterator element. diff --git a/telegram/query/channels/participants/iter_test.go b/telegram/query/channels/participants/iter_test.go index ea0bb54c28..4733bfe7e4 100644 --- a/telegram/query/channels/participants/iter_test.go +++ b/telegram/query/channels/participants/iter_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func generateParticipants(count int) []tg.ChannelParticipantClass { diff --git a/telegram/query/channels/participants/queries.gen.go b/telegram/query/channels/participants/queries.gen.go index c54dc97719..6bf87ea341 100644 --- a/telegram/query/channels/participants/queries.gen.go +++ b/telegram/query/channels/participants/queries.gen.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // No-op definition for keeping imports. diff --git a/telegram/query/channels/participants/query.go b/telegram/query/channels/participants/query.go index 3ecaea3924..b7c24a3dc6 100644 --- a/telegram/query/channels/participants/query.go +++ b/telegram/query/channels/participants/query.go @@ -1,3 +1,3 @@ package participants -//go:generate go run github.com/gotd/td/telegram/query/internal/itergen -result=ChannelsChannelParticipantsClass -package=participants -prefix=Channels -out=queries.gen.go +//go:generate go run github.com/beeper/td/telegram/query/internal/itergen -result=ChannelsChannelParticipantsClass -package=participants -prefix=Channels -out=queries.gen.go diff --git a/telegram/query/channels/participants/specialize.go b/telegram/query/channels/participants/specialize.go index 078eb9559c..2e2fe6f692 100644 --- a/telegram/query/channels/participants/specialize.go +++ b/telegram/query/channels/participants/specialize.go @@ -1,8 +1,8 @@ package participants import ( - "github.com/gotd/td/telegram/query/photos" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/query/photos" + "github.com/beeper/td/tg" ) // UserPhotos returns new user photo query builder for participant. diff --git a/telegram/query/channels/participants/specialize_test.go b/telegram/query/channels/participants/specialize_test.go index ea82d6982a..c0800198e7 100644 --- a/telegram/query/channels/participants/specialize_test.go +++ b/telegram/query/channels/participants/specialize_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) func TestElem(t *testing.T) { diff --git a/telegram/query/contacts/blocked/iter.go b/telegram/query/contacts/blocked/iter.go index e061e90b39..52fb1e738d 100644 --- a/telegram/query/contacts/blocked/iter.go +++ b/telegram/query/contacts/blocked/iter.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) // Elem is a contact iterator element. diff --git a/telegram/query/contacts/blocked/iter_test.go b/telegram/query/contacts/blocked/iter_test.go index 904e1ef093..5235cf890f 100644 --- a/telegram/query/contacts/blocked/iter_test.go +++ b/telegram/query/contacts/blocked/iter_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func generateBlocked(count int) []tg.PeerBlocked { diff --git a/telegram/query/contacts/blocked/queries.gen.go b/telegram/query/contacts/blocked/queries.gen.go index 02f91f8220..abdc817e88 100644 --- a/telegram/query/contacts/blocked/queries.gen.go +++ b/telegram/query/contacts/blocked/queries.gen.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // No-op definition for keeping imports. diff --git a/telegram/query/contacts/blocked/query.go b/telegram/query/contacts/blocked/query.go index 9a1698a882..0b9d6399a3 100644 --- a/telegram/query/contacts/blocked/query.go +++ b/telegram/query/contacts/blocked/query.go @@ -1,3 +1,3 @@ package blocked -//go:generate go run github.com/gotd/td/telegram/query/internal/itergen -result=ContactsBlockedClass -package=blocked -prefix=Contacts -out=queries.gen.go +//go:generate go run github.com/beeper/td/telegram/query/internal/itergen -result=ContactsBlockedClass -package=blocked -prefix=Contacts -out=queries.gen.go diff --git a/telegram/query/dialogs/iter.go b/telegram/query/dialogs/iter.go index 03b6dde2ac..e87c34e634 100644 --- a/telegram/query/dialogs/iter.go +++ b/telegram/query/dialogs/iter.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) // Elem is a dialog iterator element. diff --git a/telegram/query/dialogs/iter_test.go b/telegram/query/dialogs/iter_test.go index 0d7e6d475d..be28693994 100644 --- a/telegram/query/dialogs/iter_test.go +++ b/telegram/query/dialogs/iter_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func generateDialogs(count int) []tg.DialogClass { diff --git a/telegram/query/dialogs/key.go b/telegram/query/dialogs/key.go index 01dc7b8e4c..5d507186da 100644 --- a/telegram/query/dialogs/key.go +++ b/telegram/query/dialogs/key.go @@ -3,7 +3,7 @@ package dialogs import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // PeerKind represents peer kind. diff --git a/telegram/query/dialogs/queries.gen.go b/telegram/query/dialogs/queries.gen.go index 092dffcab7..602652fe8f 100644 --- a/telegram/query/dialogs/queries.gen.go +++ b/telegram/query/dialogs/queries.gen.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // No-op definition for keeping imports. diff --git a/telegram/query/dialogs/query.go b/telegram/query/dialogs/query.go index d157e9afe5..e018623afd 100644 --- a/telegram/query/dialogs/query.go +++ b/telegram/query/dialogs/query.go @@ -1,3 +1,3 @@ package dialogs -//go:generate go run github.com/gotd/td/telegram/query/internal/itergen -result=MessagesDialogsClass -package=dialogs -out=queries.gen.go +//go:generate go run github.com/beeper/td/telegram/query/internal/itergen -result=MessagesDialogsClass -package=dialogs -out=queries.gen.go diff --git a/telegram/query/dialogs/specialize.go b/telegram/query/dialogs/specialize.go index b453e78bc2..c70ee6bf87 100644 --- a/telegram/query/dialogs/specialize.go +++ b/telegram/query/dialogs/specialize.go @@ -1,11 +1,11 @@ package dialogs import ( - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/telegram/query/channels/participants" - "github.com/gotd/td/telegram/query/messages" - "github.com/gotd/td/telegram/query/photos" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/telegram/query/channels/participants" + "github.com/beeper/td/telegram/query/messages" + "github.com/beeper/td/telegram/query/photos" + "github.com/beeper/td/tg" ) // Messages returns new messages history query builder for current dialog. diff --git a/telegram/query/dialogs/specialize_test.go b/telegram/query/dialogs/specialize_test.go index 3e0ec988b5..b1839f801c 100644 --- a/telegram/query/dialogs/specialize_test.go +++ b/telegram/query/dialogs/specialize_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgmock" ) func TestElem(t *testing.T) { diff --git a/telegram/query/internal/cachedgen/_template/gen.tmpl b/telegram/query/internal/cachedgen/_template/gen.tmpl index 845e8ab7cb..7ff5043b96 100644 --- a/telegram/query/internal/cachedgen/_template/gen.tmpl +++ b/telegram/query/internal/cachedgen/_template/gen.tmpl @@ -1,4 +1,4 @@ -{{ define "header" }}{{- /*gotype: github.com/gotd/td/telegram/query/internal/cachedgen.Config*/ -}} +{{ define "header" }}{{- /*gotype: github.com/beeper/td/telegram/query/internal/cachedgen.Config*/ -}} // Code generated by itergen, DO NOT EDIT. package {{ $.Package }} @@ -9,7 +9,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // No-op definition for keeping imports. diff --git a/telegram/query/internal/cachedgen/collect.go b/telegram/query/internal/cachedgen/collect.go index 9c81dacbbd..16786e2f38 100644 --- a/telegram/query/internal/cachedgen/collect.go +++ b/telegram/query/internal/cachedgen/collect.go @@ -7,7 +7,7 @@ import ( "golang.org/x/tools/go/packages" - "github.com/gotd/td/telegram/query/internal/genutil" + "github.com/beeper/td/telegram/query/internal/genutil" ) func isHashField(field *types.Var) bool { diff --git a/telegram/query/internal/cachedgen/gen.go b/telegram/query/internal/cachedgen/gen.go index a1d81f24fb..222c063e4f 100644 --- a/telegram/query/internal/cachedgen/gen.go +++ b/telegram/query/internal/cachedgen/gen.go @@ -12,14 +12,14 @@ import ( "github.com/go-faster/errors" "go.uber.org/multierr" - "github.com/gotd/td/telegram/query/internal/genutil" + "github.com/beeper/td/telegram/query/internal/genutil" ) //go:embed _template/*.tmpl var templates embed.FS func generate(ctx context.Context, out io.Writer, pkgName string) error { - pkg, err := genutil.Load(ctx, "github.com/gotd/td/tg") + pkg, err := genutil.Load(ctx, "github.com/beeper/td/tg") if err != nil { return errors.Wrap(err, "load") } diff --git a/telegram/query/internal/cachedgen/method.go b/telegram/query/internal/cachedgen/method.go index be9c1c296d..ede86a3469 100644 --- a/telegram/query/internal/cachedgen/method.go +++ b/telegram/query/internal/cachedgen/method.go @@ -5,7 +5,7 @@ import ( "sort" "strings" - "github.com/gotd/td/telegram/query/internal/genutil" + "github.com/beeper/td/telegram/query/internal/genutil" ) // Param represents request parameter. diff --git a/telegram/query/internal/genutil/write.go b/telegram/query/internal/genutil/write.go index 3371fd6dff..d0a99ec724 100644 --- a/telegram/query/internal/genutil/write.go +++ b/telegram/query/internal/genutil/write.go @@ -10,7 +10,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/gen" + "github.com/beeper/td/gen" ) // WriteTemplate loads template from FS and executes it to given output writer. diff --git a/telegram/query/internal/itergen/_template/gen.tmpl b/telegram/query/internal/itergen/_template/gen.tmpl index 5341cbfd12..c4131eb81f 100644 --- a/telegram/query/internal/itergen/_template/gen.tmpl +++ b/telegram/query/internal/itergen/_template/gen.tmpl @@ -1,4 +1,4 @@ -{{ define "header" }}{{- /*gotype: github.com/gotd/td/telegram/query/internal/itergen.Config*/ -}} +{{ define "header" }}{{- /*gotype: github.com/beeper/td/telegram/query/internal/itergen.Config*/ -}} // Code generated by itergen, DO NOT EDIT. package {{ $.Package }} @@ -8,7 +8,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // No-op definition for keeping imports. @@ -52,7 +52,7 @@ func NewQueryBuilder(raw *tg.Client) *QueryBuilder { {{- end }} {{ end }} -{{ define "query" }}{{- /*gotype: github.com/gotd/td/telegram/query/internal/gen.Method*/ -}} +{{ define "query" }}{{- /*gotype: github.com/beeper/td/telegram/query/internal/gen.Method*/ -}} // {{ $.Name }}QueryBuilder is query builder of {{ $.OriginalName }}. type {{ $.Name }}QueryBuilder struct { raw *tg.Client diff --git a/telegram/query/internal/itergen/collect.go b/telegram/query/internal/itergen/collect.go index 4e74f7c2d3..7e5ec1f6c1 100644 --- a/telegram/query/internal/itergen/collect.go +++ b/telegram/query/internal/itergen/collect.go @@ -10,7 +10,7 @@ import ( "github.com/go-faster/errors" "golang.org/x/tools/go/packages" - "github.com/gotd/td/telegram/query/internal/genutil" + "github.com/beeper/td/telegram/query/internal/genutil" ) type method struct { diff --git a/telegram/query/internal/itergen/gen.go b/telegram/query/internal/itergen/gen.go index a5b4fffcc2..d45d590a96 100644 --- a/telegram/query/internal/itergen/gen.go +++ b/telegram/query/internal/itergen/gen.go @@ -12,14 +12,14 @@ import ( "github.com/go-faster/errors" "go.uber.org/multierr" - "github.com/gotd/td/telegram/query/internal/genutil" + "github.com/beeper/td/telegram/query/internal/genutil" ) //go:embed _template/*.tmpl var templates embed.FS func generate(ctx context.Context, out io.Writer, cfg collectorConfig) error { - pkg, err := genutil.Load(ctx, "github.com/gotd/td/tg") + pkg, err := genutil.Load(ctx, "github.com/beeper/td/tg") if err != nil { return errors.Wrap(err, "load") } diff --git a/telegram/query/internal/itergen/method.go b/telegram/query/internal/itergen/method.go index e00e68a24e..2259bd35fb 100644 --- a/telegram/query/internal/itergen/method.go +++ b/telegram/query/internal/itergen/method.go @@ -5,7 +5,7 @@ import ( "sort" "strings" - "github.com/gotd/td/telegram/query/internal/genutil" + "github.com/beeper/td/telegram/query/internal/genutil" ) // Param represents request parameter. diff --git a/telegram/query/internal/itergen/special.go b/telegram/query/internal/itergen/special.go index e600d6c1f4..660c06359e 100644 --- a/telegram/query/internal/itergen/special.go +++ b/telegram/query/internal/itergen/special.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/query/internal/genutil" + "github.com/beeper/td/telegram/query/internal/genutil" ) func (c *collector) unpackClass( diff --git a/telegram/query/messages/iter.go b/telegram/query/messages/iter.go index eb002b32d9..bdabc39be6 100644 --- a/telegram/query/messages/iter.go +++ b/telegram/query/messages/iter.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) // Elem is a message iterator element. diff --git a/telegram/query/messages/iter_test.go b/telegram/query/messages/iter_test.go index 3194c99b28..7ebbc85909 100644 --- a/telegram/query/messages/iter_test.go +++ b/telegram/query/messages/iter_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func generateMessages(count int) []tg.MessageClass { diff --git a/telegram/query/messages/queries.gen.go b/telegram/query/messages/queries.gen.go index a89db4e18a..6d3044d92e 100644 --- a/telegram/query/messages/queries.gen.go +++ b/telegram/query/messages/queries.gen.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // No-op definition for keeping imports. diff --git a/telegram/query/messages/query.go b/telegram/query/messages/query.go index 68135067b2..d592192110 100644 --- a/telegram/query/messages/query.go +++ b/telegram/query/messages/query.go @@ -1,3 +1,3 @@ package messages -//go:generate go run github.com/gotd/td/telegram/query/internal/itergen -out=queries.gen.go +//go:generate go run github.com/beeper/td/telegram/query/internal/itergen -out=queries.gen.go diff --git a/telegram/query/messages/specialize.go b/telegram/query/messages/specialize.go index 50c061eb5c..f3f4602e47 100644 --- a/telegram/query/messages/specialize.go +++ b/telegram/query/messages/specialize.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Document returns document object if message has a document attachment (video, voice, audio, diff --git a/telegram/query/messages/specialize_test.go b/telegram/query/messages/specialize_test.go index 4ba2aa79f9..822efb2705 100644 --- a/telegram/query/messages/specialize_test.go +++ b/telegram/query/messages/specialize_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func Test_getDocFilename(t *testing.T) { diff --git a/telegram/query/messages/stickers/featured/iter.go b/telegram/query/messages/stickers/featured/iter.go index e824c0e7c3..32e39ad19b 100644 --- a/telegram/query/messages/stickers/featured/iter.go +++ b/telegram/query/messages/stickers/featured/iter.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Elem is a sticker iterator element. diff --git a/telegram/query/messages/stickers/featured/iter_test.go b/telegram/query/messages/stickers/featured/iter_test.go index 39c12753ac..4838fbc97f 100644 --- a/telegram/query/messages/stickers/featured/iter_test.go +++ b/telegram/query/messages/stickers/featured/iter_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func generateStickers(count int) []tg.StickerSetCoveredClass { diff --git a/telegram/query/messages/stickers/featured/queries.gen.go b/telegram/query/messages/stickers/featured/queries.gen.go index d005b2ffcb..63c22f525c 100644 --- a/telegram/query/messages/stickers/featured/queries.gen.go +++ b/telegram/query/messages/stickers/featured/queries.gen.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // No-op definition for keeping imports. diff --git a/telegram/query/messages/stickers/featured/query.go b/telegram/query/messages/stickers/featured/query.go index aa7d72b6b2..2820ab2ebd 100644 --- a/telegram/query/messages/stickers/featured/query.go +++ b/telegram/query/messages/stickers/featured/query.go @@ -1,3 +1,3 @@ package featured -//go:generate go run github.com/gotd/td/telegram/query/internal/itergen -result=MessagesFeaturedStickersClass -package=featured -out=queries.gen.go +//go:generate go run github.com/beeper/td/telegram/query/internal/itergen -result=MessagesFeaturedStickersClass -package=featured -out=queries.gen.go diff --git a/telegram/query/photos/iter.go b/telegram/query/photos/iter.go index 9519693bb0..0ba963c1e6 100644 --- a/telegram/query/photos/iter.go +++ b/telegram/query/photos/iter.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/message/peer" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/message/peer" + "github.com/beeper/td/tg" ) // Elem is a photo iterator element. diff --git a/telegram/query/photos/iter_test.go b/telegram/query/photos/iter_test.go index b42e3c5df3..c0a6118cb5 100644 --- a/telegram/query/photos/iter_test.go +++ b/telegram/query/photos/iter_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func generatePhotos(count int) []tg.PhotoClass { diff --git a/telegram/query/photos/queries.gen.go b/telegram/query/photos/queries.gen.go index e56ad958de..f98b437b42 100644 --- a/telegram/query/photos/queries.gen.go +++ b/telegram/query/photos/queries.gen.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // No-op definition for keeping imports. diff --git a/telegram/query/photos/query.go b/telegram/query/photos/query.go index 50627043ec..0d705f1370 100644 --- a/telegram/query/photos/query.go +++ b/telegram/query/photos/query.go @@ -1,3 +1,3 @@ package photos -//go:generate go run github.com/gotd/td/telegram/query/internal/itergen -result=PhotosPhotosClass -package=photos -prefix=Photos -out=queries.gen.go +//go:generate go run github.com/beeper/td/telegram/query/internal/itergen -result=PhotosPhotosClass -package=photos -prefix=Photos -out=queries.gen.go diff --git a/telegram/query/query.go b/telegram/query/query.go index 8943ec9d14..0deafdce19 100644 --- a/telegram/query/query.go +++ b/telegram/query/query.go @@ -2,13 +2,13 @@ package query import ( - "github.com/gotd/td/telegram/query/channels/participants" - "github.com/gotd/td/telegram/query/contacts/blocked" - "github.com/gotd/td/telegram/query/dialogs" - "github.com/gotd/td/telegram/query/messages" - "github.com/gotd/td/telegram/query/messages/stickers/featured" - "github.com/gotd/td/telegram/query/photos" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/query/channels/participants" + "github.com/beeper/td/telegram/query/contacts/blocked" + "github.com/beeper/td/telegram/query/dialogs" + "github.com/beeper/td/telegram/query/messages" + "github.com/beeper/td/telegram/query/messages/stickers/featured" + "github.com/beeper/td/telegram/query/photos" + "github.com/beeper/td/tg" ) // Query is common struct to create query builders. diff --git a/telegram/query/query_example_test.go b/telegram/query/query_example_test.go index b658ba383f..42f684aedb 100644 --- a/telegram/query/query_example_test.go +++ b/telegram/query/query_example_test.go @@ -6,13 +6,13 @@ import ( "os" "os/signal" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/downloader" - "github.com/gotd/td/telegram/query" - "github.com/gotd/td/telegram/query/channels/participants" - "github.com/gotd/td/telegram/query/dialogs" - "github.com/gotd/td/telegram/query/messages" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/downloader" + "github.com/beeper/td/telegram/query" + "github.com/beeper/td/telegram/query/channels/participants" + "github.com/beeper/td/telegram/query/dialogs" + "github.com/beeper/td/telegram/query/messages" + "github.com/beeper/td/tg" ) func ExampleQuery_iterAllMessages() { diff --git a/telegram/rand_int64.go b/telegram/rand_int64.go index 38c19ff537..c7f781a4e2 100644 --- a/telegram/rand_int64.go +++ b/telegram/rand_int64.go @@ -1,6 +1,6 @@ package telegram -import "github.com/gotd/td/crypto" +import "github.com/beeper/td/crypto" // RandInt64 returns new random int64 from random source. // diff --git a/telegram/self.go b/telegram/self.go index f7b77a1979..a3230c6213 100644 --- a/telegram/self.go +++ b/telegram/self.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Self returns current user. diff --git a/telegram/self_test.go b/telegram/self_test.go index 3b131ab8a3..4ff6a3d3f5 100644 --- a/telegram/self_test.go +++ b/telegram/self_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestClient_Self(t *testing.T) { diff --git a/telegram/send_message.go b/telegram/send_message.go index 52078560f3..8d39c099ff 100644 --- a/telegram/send_message.go +++ b/telegram/send_message.go @@ -3,7 +3,7 @@ package telegram import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // SendMessage sends message to peer. diff --git a/telegram/session.go b/telegram/session.go index 77a8f0ef02..29857c15e6 100644 --- a/telegram/session.go +++ b/telegram/session.go @@ -7,11 +7,11 @@ import ( "github.com/go-faster/errors" "go.uber.org/zap" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/pool" - "github.com/gotd/td/session" - "github.com/gotd/td/tg" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/pool" + "github.com/beeper/td/session" + "github.com/beeper/td/tg" ) func (c *Client) restoreConnection(ctx context.Context) error { diff --git a/telegram/sub_conns.go b/telegram/sub_conns.go index 94d6e2dfd3..8d358e7c7c 100644 --- a/telegram/sub_conns.go +++ b/telegram/sub_conns.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func (c *Client) invokeSub(ctx context.Context, dc int, input bin.Encoder, output bin.Decoder) error { diff --git a/telegram/thumbnail/svg_example_test.go b/telegram/thumbnail/svg_example_test.go index 2d2fcd9373..3256537ea2 100644 --- a/telegram/thumbnail/svg_example_test.go +++ b/telegram/thumbnail/svg_example_test.go @@ -3,7 +3,7 @@ package thumbnail_test import ( "os" - "github.com/gotd/td/telegram/thumbnail" + "github.com/beeper/td/telegram/thumbnail" ) func ExampleDecodePath() { diff --git a/telegram/thumbnail/thumbnail_example_test.go b/telegram/thumbnail/thumbnail_example_test.go index f8dd49cd97..abc81e37a7 100644 --- a/telegram/thumbnail/thumbnail_example_test.go +++ b/telegram/thumbnail/thumbnail_example_test.go @@ -7,8 +7,8 @@ import ( "image/jpeg" "image/png" - "github.com/gotd/td/telegram/thumbnail" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/thumbnail" + "github.com/beeper/td/tg" ) func ExampleExpand() { diff --git a/telegram/thumbnail/thumbnail_test.go b/telegram/thumbnail/thumbnail_test.go index 06e52ae767..fc7a3904e6 100644 --- a/telegram/thumbnail/thumbnail_test.go +++ b/telegram/thumbnail/thumbnail_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" + "github.com/beeper/td/testutil" ) func TestExpand(t *testing.T) { diff --git a/telegram/tljson/app_config.go b/telegram/tljson/app_config.go index 369df99eb5..8b754032c3 100644 --- a/telegram/tljson/app_config.go +++ b/telegram/tljson/app_config.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" "github.com/go-faster/jx" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // EmojiSound represents emoji sound file location. diff --git a/telegram/tljson/app_config_test.go b/telegram/tljson/app_config_test.go index b9c7b22fe7..430bac5ff6 100644 --- a/telegram/tljson/app_config_test.go +++ b/telegram/tljson/app_config_test.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/jx" "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) const example = `{ diff --git a/telegram/tljson/convert.go b/telegram/tljson/convert.go index 4274953c35..429a9dda9e 100644 --- a/telegram/tljson/convert.go +++ b/telegram/tljson/convert.go @@ -4,7 +4,7 @@ import ( "github.com/go-faster/errors" "github.com/go-faster/jx" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Decode decodes JSON and converts it to tg.JSONValueClass. diff --git a/telegram/tljson/convert_test.go b/telegram/tljson/convert_test.go index 19500b0769..fdf94c9563 100644 --- a/telegram/tljson/convert_test.go +++ b/telegram/tljson/convert_test.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/jx" "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func TestDecodeEncodeDecode(t *testing.T) { diff --git a/telegram/transfer.go b/telegram/transfer.go index ec77228348..d86b8f7f32 100644 --- a/telegram/transfer.go +++ b/telegram/transfer.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func (c *Client) exportAuth(ctx context.Context, dcID int) (*tg.AuthExportedAuthorization, error) { diff --git a/telegram/transfer_test.go b/telegram/transfer_test.go index 863c658da2..776146121f 100644 --- a/telegram/transfer_test.go +++ b/telegram/transfer_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgmock" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgmock" ) func TestTransfer(t *testing.T) { diff --git a/telegram/typemap.go b/telegram/typemap.go index 9ed8f2aa36..7d52f7ec95 100644 --- a/telegram/typemap.go +++ b/telegram/typemap.go @@ -3,10 +3,10 @@ package telegram import ( "sync" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" - "github.com/gotd/td/tg" - "github.com/gotd/td/tmap" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" + "github.com/beeper/td/tg" + "github.com/beeper/td/tmap" ) // Port is default port used by telegram. diff --git a/telegram/updates/access_hash_feeder.go b/telegram/updates/access_hash_feeder.go index 07a8e4c870..339b9ea8b5 100644 --- a/telegram/updates/access_hash_feeder.go +++ b/telegram/updates/access_hash_feeder.go @@ -6,7 +6,7 @@ import ( "go.uber.org/zap" "golang.org/x/net/context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func (s *internalState) saveChannelHashes(ctx context.Context, chats []tg.ChatClass) { diff --git a/telegram/updates/config.go b/telegram/updates/config.go index cfc4ac2e9d..04a1bf05de 100644 --- a/telegram/updates/config.go +++ b/telegram/updates/config.go @@ -6,8 +6,8 @@ import ( "go.opentelemetry.io/otel/trace" "go.uber.org/zap" - "github.com/gotd/td/telegram" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/tg" ) // API is the interface which contains diff --git a/telegram/updates/conv_shorts.go b/telegram/updates/conv_shorts.go index 64fbf34d60..7b5a884302 100644 --- a/telegram/updates/conv_shorts.go +++ b/telegram/updates/conv_shorts.go @@ -1,6 +1,6 @@ package updates -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" func convertOptional(msg *tg.Message, i tg.UpdatesClass) { if u, ok := i.(interface { diff --git a/telegram/updates/hook/hook.go b/telegram/updates/hook/hook.go index ed9f5bf65e..8f7625dfdc 100644 --- a/telegram/updates/hook/hook.go +++ b/telegram/updates/hook/hook.go @@ -6,9 +6,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/telegram" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/telegram" + "github.com/beeper/td/tg" ) // UpdateHook middleware is called on each tg.UpdatesClass method result. diff --git a/telegram/updates/hook/hook_test.go b/telegram/updates/hook/hook_test.go index 563f1af319..82047ac099 100644 --- a/telegram/updates/hook/hook_test.go +++ b/telegram/updates/hook/hook_test.go @@ -8,10 +8,10 @@ import ( "github.com/stretchr/testify/assert" - "github.com/gotd/td/telegram" + "github.com/beeper/td/telegram" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) func TestUpdateHook_InvokeRaw(t *testing.T) { diff --git a/telegram/updates/internal/e2e/entities.go b/telegram/updates/internal/e2e/entities.go index 36323d49e7..25f900f91e 100644 --- a/telegram/updates/internal/e2e/entities.go +++ b/telegram/updates/internal/e2e/entities.go @@ -1,6 +1,6 @@ package e2e -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" // Entities contains update entities. type Entities struct { diff --git a/telegram/updates/internal/e2e/handler.go b/telegram/updates/internal/e2e/handler.go index 6ed179b058..ba56914898 100644 --- a/telegram/updates/internal/e2e/handler.go +++ b/telegram/updates/internal/e2e/handler.go @@ -4,7 +4,7 @@ import ( "context" "sync" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Handler handles updates. diff --git a/telegram/updates/internal/e2e/manager_test.go b/telegram/updates/internal/e2e/manager_test.go index 178ddd09c9..07fd6248a0 100644 --- a/telegram/updates/internal/e2e/manager_test.go +++ b/telegram/updates/internal/e2e/manager_test.go @@ -13,8 +13,8 @@ import ( "go.uber.org/zap/zaptest" "golang.org/x/sync/errgroup" - "github.com/gotd/td/telegram/updates" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/updates" + "github.com/beeper/td/tg" ) func TestE2E(t *testing.T) { diff --git a/telegram/updates/internal/e2e/peer_db.go b/telegram/updates/internal/e2e/peer_db.go index cdbe76c965..30d0fac50e 100644 --- a/telegram/updates/internal/e2e/peer_db.go +++ b/telegram/updates/internal/e2e/peer_db.go @@ -1,6 +1,6 @@ package e2e -import "github.com/gotd/td/tg" +import "github.com/beeper/td/tg" type messageDatabase struct { common []tg.MessageClass diff --git a/telegram/updates/internal/e2e/server.go b/telegram/updates/internal/e2e/server.go index b322d9d8b1..03631ff2b2 100644 --- a/telegram/updates/internal/e2e/server.go +++ b/telegram/updates/internal/e2e/server.go @@ -7,7 +7,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Server for testing gaps. diff --git a/telegram/updates/internal/e2e/server_event.go b/telegram/updates/internal/e2e/server_event.go index cc319a6ea9..158b652f03 100644 --- a/telegram/updates/internal/e2e/server_event.go +++ b/telegram/updates/internal/e2e/server_event.go @@ -1,7 +1,7 @@ package e2e import ( - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // EventBuilder struct. diff --git a/telegram/updates/internal/e2e/storage_mem.go b/telegram/updates/internal/e2e/storage_mem.go index 77d3ca58fb..57bbd88ee4 100644 --- a/telegram/updates/internal/e2e/storage_mem.go +++ b/telegram/updates/internal/e2e/storage_mem.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/telegram/updates" + "github.com/beeper/td/telegram/updates" ) var _ updates.StateStorage = (*memStorage)(nil) diff --git a/telegram/updates/manager.go b/telegram/updates/manager.go index 1db8d63e4d..69975278da 100644 --- a/telegram/updates/manager.go +++ b/telegram/updates/manager.go @@ -9,8 +9,8 @@ import ( "go.uber.org/zap" "golang.org/x/sync/errgroup" - "github.com/gotd/td/telegram" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/tg" ) var _ telegram.UpdateHandler = (*Manager)(nil) diff --git a/telegram/updates/sort_pts.go b/telegram/updates/sort_pts.go index 2be3a1fb8e..c7ae0a4acb 100644 --- a/telegram/updates/sort_pts.go +++ b/telegram/updates/sort_pts.go @@ -3,7 +3,7 @@ package updates import ( "sort" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func sortUpdatesByPts(u []tg.UpdateClass) { diff --git a/telegram/updates/sort_pts_test.go b/telegram/updates/sort_pts_test.go index bc11d39298..9d48e38d4d 100644 --- a/telegram/updates/sort_pts_test.go +++ b/telegram/updates/sort_pts_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func Test_sortUpdatesByPts(t *testing.T) { diff --git a/telegram/updates/state.go b/telegram/updates/state.go index def2af00e3..0035fd26ea 100644 --- a/telegram/updates/state.go +++ b/telegram/updates/state.go @@ -10,11 +10,11 @@ import ( "go.uber.org/zap" "golang.org/x/sync/errgroup" - "github.com/gotd/td/exchange" - "github.com/gotd/td/telegram" - "github.com/gotd/td/telegram/auth" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/exchange" + "github.com/beeper/td/telegram" + "github.com/beeper/td/telegram/auth" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) const ( diff --git a/telegram/updates/state_apply.go b/telegram/updates/state_apply.go index bdf86d59db..a38be055cc 100644 --- a/telegram/updates/state_apply.go +++ b/telegram/updates/state_apply.go @@ -6,7 +6,7 @@ import ( "go.opentelemetry.io/otel/trace" "go.uber.org/zap" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func (s *internalState) applySeq(ctx context.Context, state int, updates []update) error { diff --git a/telegram/updates/state_channel.go b/telegram/updates/state_channel.go index d6a150f3c0..c6296fefc6 100644 --- a/telegram/updates/state_channel.go +++ b/telegram/updates/state_channel.go @@ -8,8 +8,8 @@ import ( "go.opentelemetry.io/otel/trace" "go.uber.org/zap" - "github.com/gotd/td/telegram" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram" + "github.com/beeper/td/tg" ) type channelUpdate struct { diff --git a/telegram/updates/storage.go b/telegram/updates/storage.go index 7c5a9f70e0..17e5a32711 100644 --- a/telegram/updates/storage.go +++ b/telegram/updates/storage.go @@ -3,7 +3,7 @@ package updates import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // State is the user internalState. diff --git a/telegram/updates/update.go b/telegram/updates/update.go index 4948a750fd..496b7b12be 100644 --- a/telegram/updates/update.go +++ b/telegram/updates/update.go @@ -1,7 +1,7 @@ package updates import ( - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type update struct { diff --git a/telegram/updates/utils.go b/telegram/updates/utils.go index 11b73d9693..ebce429ce3 100644 --- a/telegram/updates/utils.go +++ b/telegram/updates/utils.go @@ -3,7 +3,7 @@ package updates import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) func validatePts(pts, ptsCount int) error { diff --git a/telegram/uploader/big.go b/telegram/uploader/big.go index 8eaa7fe058..36c0f80359 100644 --- a/telegram/uploader/big.go +++ b/telegram/uploader/big.go @@ -6,11 +6,11 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/syncio" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/syncio" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) type part struct { diff --git a/telegram/uploader/client.go b/telegram/uploader/client.go index c8d26c9750..fc4e81a23d 100644 --- a/telegram/uploader/client.go +++ b/telegram/uploader/client.go @@ -3,7 +3,7 @@ package uploader import ( "context" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) // Client represents Telegram RPC client. diff --git a/telegram/uploader/helpers.go b/telegram/uploader/helpers.go index 187ef69704..65bc164055 100644 --- a/telegram/uploader/helpers.go +++ b/telegram/uploader/helpers.go @@ -12,8 +12,8 @@ import ( "github.com/go-faster/errors" "go.uber.org/multierr" - "github.com/gotd/td/telegram/uploader/source" - "github.com/gotd/td/tg" + "github.com/beeper/td/telegram/uploader/source" + "github.com/beeper/td/tg" ) // File is file abstraction. diff --git a/telegram/uploader/part.go b/telegram/uploader/part.go index 69553115ba..084574db81 100644 --- a/telegram/uploader/part.go +++ b/telegram/uploader/part.go @@ -3,7 +3,7 @@ package uploader import ( "github.com/go-faster/errors" - "github.com/gotd/td/constant" + "github.com/beeper/td/constant" ) // https://core.telegram.org/api/files#uploading-files diff --git a/telegram/uploader/small.go b/telegram/uploader/small.go index f798556fda..e01ca8da0b 100644 --- a/telegram/uploader/small.go +++ b/telegram/uploader/small.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) func (u *Uploader) smallLoop(ctx context.Context, h io.Writer, upload *Upload) error { diff --git a/telegram/uploader/uploader.go b/telegram/uploader/uploader.go index cf0a73e57d..e6c227787c 100644 --- a/telegram/uploader/uploader.go +++ b/telegram/uploader/uploader.go @@ -7,10 +7,10 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/telegram/uploader/source" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/telegram/uploader/source" + "github.com/beeper/td/tg" ) // Uploader is Telegram file uploader. diff --git a/telegram/uploader/uploader_test.go b/telegram/uploader/uploader_test.go index 128091437e..eeb5cb824d 100644 --- a/telegram/uploader/uploader_test.go +++ b/telegram/uploader/uploader_test.go @@ -16,10 +16,10 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/atomic" - "github.com/gotd/td/syncio" - "github.com/gotd/td/telegram/uploader/source" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" + "github.com/beeper/td/syncio" + "github.com/beeper/td/telegram/uploader/source" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" ) type mockClient struct { diff --git a/tg/e2e/tl_bool_gen.go b/tg/e2e/tl_bool_gen.go index 6ddff6225f..b0135ee302 100644 --- a/tg/e2e/tl_bool_gen.go +++ b/tg/e2e/tl_bool_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_bytes_gen.go b/tg/e2e/tl_bytes_gen.go index 9467321101..dd7be82484 100644 --- a/tg/e2e/tl_bytes_gen.go +++ b/tg/e2e/tl_bytes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_client_gen.go b/tg/e2e/tl_client_gen.go index 7238b9f067..13fac1856e 100644 --- a/tg/e2e/tl_client_gen.go +++ b/tg/e2e/tl_client_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_decrypted_message_action_gen.go b/tg/e2e/tl_decrypted_message_action_gen.go index cbd31a0e9f..a2b9636d2a 100644 --- a/tg/e2e/tl_decrypted_message_action_gen.go +++ b/tg/e2e/tl_decrypted_message_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_decrypted_message_gen.go b/tg/e2e/tl_decrypted_message_gen.go index b9e8441285..74598112c6 100644 --- a/tg/e2e/tl_decrypted_message_gen.go +++ b/tg/e2e/tl_decrypted_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_decrypted_message_layer_gen.go b/tg/e2e/tl_decrypted_message_layer_gen.go index 82cd185970..7d5ca7dce7 100644 --- a/tg/e2e/tl_decrypted_message_layer_gen.go +++ b/tg/e2e/tl_decrypted_message_layer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_decrypted_message_media_gen.go b/tg/e2e/tl_decrypted_message_media_gen.go index a0a9d7300b..31b7604590 100644 --- a/tg/e2e/tl_decrypted_message_media_gen.go +++ b/tg/e2e/tl_decrypted_message_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_document_attribute_gen.go b/tg/e2e/tl_document_attribute_gen.go index aed68bfee3..770c4c26a0 100644 --- a/tg/e2e/tl_document_attribute_gen.go +++ b/tg/e2e/tl_document_attribute_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_double_gen.go b/tg/e2e/tl_double_gen.go index 9e545344bd..c36dba2e1e 100644 --- a/tg/e2e/tl_double_gen.go +++ b/tg/e2e/tl_double_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_file_location_gen.go b/tg/e2e/tl_file_location_gen.go index a1408134fe..9ea34ad9ba 100644 --- a/tg/e2e/tl_file_location_gen.go +++ b/tg/e2e/tl_file_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_input_sticker_set_gen.go b/tg/e2e/tl_input_sticker_set_gen.go index d9190ede23..d010fe2d63 100644 --- a/tg/e2e/tl_input_sticker_set_gen.go +++ b/tg/e2e/tl_input_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_int_gen.go b/tg/e2e/tl_int_gen.go index 73b8ed869e..2e83a185a7 100644 --- a/tg/e2e/tl_int_gen.go +++ b/tg/e2e/tl_int_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_long_gen.go b/tg/e2e/tl_long_gen.go index 7b5b44afb2..44e7d9196a 100644 --- a/tg/e2e/tl_long_gen.go +++ b/tg/e2e/tl_long_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_message_entity_gen.go b/tg/e2e/tl_message_entity_gen.go index b6b93e7653..e3964ec563 100644 --- a/tg/e2e/tl_message_entity_gen.go +++ b/tg/e2e/tl_message_entity_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_photo_size_gen.go b/tg/e2e/tl_photo_size_gen.go index e6ea881c3a..4ddd791c89 100644 --- a/tg/e2e/tl_photo_size_gen.go +++ b/tg/e2e/tl_photo_size_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_registry_gen.go b/tg/e2e/tl_registry_gen.go index a61d6fbf29..759ccaa5f0 100644 --- a/tg/e2e/tl_registry_gen.go +++ b/tg/e2e/tl_registry_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_send_message_action_gen.go b/tg/e2e/tl_send_message_action_gen.go index ff0024c115..2eca22c14f 100644 --- a/tg/e2e/tl_send_message_action_gen.go +++ b/tg/e2e/tl_send_message_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_string_gen.go b/tg/e2e/tl_string_gen.go index 02bbcf0b64..9662d0d024 100644 --- a/tg/e2e/tl_string_gen.go +++ b/tg/e2e/tl_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_test_dummy_function_gen.go b/tg/e2e/tl_test_dummy_function_gen.go index c5bfd004fb..fa734e9b31 100644 --- a/tg/e2e/tl_test_dummy_function_gen.go +++ b/tg/e2e/tl_test_dummy_function_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/e2e/tl_true_gen.go b/tg/e2e/tl_true_gen.go index 63cec8783c..4ec20fb784 100644 --- a/tg/e2e/tl_true_gen.go +++ b/tg/e2e/tl_true_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_access_point_rule_gen.go b/tg/tl_access_point_rule_gen.go index ba228c511f..4f5b05edc5 100644 --- a/tg/tl_access_point_rule_gen.go +++ b/tg/tl_access_point_rule_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_access_point_rule_slices_gen.go b/tg/tl_access_point_rule_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_access_point_rule_slices_gen.go +++ b/tg/tl_access_point_rule_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_accept_authorization_gen.go b/tg/tl_account_accept_authorization_gen.go index ac1a69ec36..c0f8c40a84 100644 --- a/tg/tl_account_accept_authorization_gen.go +++ b/tg/tl_account_accept_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_accept_authorization_slices_gen.go b/tg/tl_account_accept_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_accept_authorization_slices_gen.go +++ b/tg/tl_account_accept_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_authorization_form_gen.go b/tg/tl_account_authorization_form_gen.go index 4ca2cedf6d..5bab303991 100644 --- a/tg/tl_account_authorization_form_gen.go +++ b/tg/tl_account_authorization_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_authorization_form_slices_gen.go b/tg/tl_account_authorization_form_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_authorization_form_slices_gen.go +++ b/tg/tl_account_authorization_form_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_authorizations_gen.go b/tg/tl_account_authorizations_gen.go index d1d0e91457..463eda5df0 100644 --- a/tg/tl_account_authorizations_gen.go +++ b/tg/tl_account_authorizations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_authorizations_slices_gen.go b/tg/tl_account_authorizations_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_authorizations_slices_gen.go +++ b/tg/tl_account_authorizations_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_auto_download_settings_gen.go b/tg/tl_account_auto_download_settings_gen.go index b0e2c9d820..453bae025a 100644 --- a/tg/tl_account_auto_download_settings_gen.go +++ b/tg/tl_account_auto_download_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_auto_download_settings_slices_gen.go b/tg/tl_account_auto_download_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_auto_download_settings_slices_gen.go +++ b/tg/tl_account_auto_download_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_auto_save_settings_gen.go b/tg/tl_account_auto_save_settings_gen.go index f584d6b6da..12b0cc02f5 100644 --- a/tg/tl_account_auto_save_settings_gen.go +++ b/tg/tl_account_auto_save_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_auto_save_settings_slices_gen.go b/tg/tl_account_auto_save_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_auto_save_settings_slices_gen.go +++ b/tg/tl_account_auto_save_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_business_chat_links_gen.go b/tg/tl_account_business_chat_links_gen.go index 56f099a5ff..6fa0b10acf 100644 --- a/tg/tl_account_business_chat_links_gen.go +++ b/tg/tl_account_business_chat_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_business_chat_links_slices_gen.go b/tg/tl_account_business_chat_links_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_business_chat_links_slices_gen.go +++ b/tg/tl_account_business_chat_links_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_cancel_password_email_gen.go b/tg/tl_account_cancel_password_email_gen.go index abb3e676c5..37617e165d 100644 --- a/tg/tl_account_cancel_password_email_gen.go +++ b/tg/tl_account_cancel_password_email_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_cancel_password_email_slices_gen.go b/tg/tl_account_cancel_password_email_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_cancel_password_email_slices_gen.go +++ b/tg/tl_account_cancel_password_email_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_change_authorization_settings_gen.go b/tg/tl_account_change_authorization_settings_gen.go index d77b911702..dd75e92db7 100644 --- a/tg/tl_account_change_authorization_settings_gen.go +++ b/tg/tl_account_change_authorization_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_change_authorization_settings_slices_gen.go b/tg/tl_account_change_authorization_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_change_authorization_settings_slices_gen.go +++ b/tg/tl_account_change_authorization_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_change_phone_gen.go b/tg/tl_account_change_phone_gen.go index ff92ece967..38e705da22 100644 --- a/tg/tl_account_change_phone_gen.go +++ b/tg/tl_account_change_phone_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_change_phone_slices_gen.go b/tg/tl_account_change_phone_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_change_phone_slices_gen.go +++ b/tg/tl_account_change_phone_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_check_username_gen.go b/tg/tl_account_check_username_gen.go index f238d6404b..0a5f11cb1f 100644 --- a/tg/tl_account_check_username_gen.go +++ b/tg/tl_account_check_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_check_username_slices_gen.go b/tg/tl_account_check_username_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_check_username_slices_gen.go +++ b/tg/tl_account_check_username_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_clear_recent_emoji_statuses_gen.go b/tg/tl_account_clear_recent_emoji_statuses_gen.go index 687e68ff95..d270afa4d4 100644 --- a/tg/tl_account_clear_recent_emoji_statuses_gen.go +++ b/tg/tl_account_clear_recent_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_clear_recent_emoji_statuses_slices_gen.go b/tg/tl_account_clear_recent_emoji_statuses_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_clear_recent_emoji_statuses_slices_gen.go +++ b/tg/tl_account_clear_recent_emoji_statuses_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_confirm_password_email_gen.go b/tg/tl_account_confirm_password_email_gen.go index f26bbe1ade..f680c356db 100644 --- a/tg/tl_account_confirm_password_email_gen.go +++ b/tg/tl_account_confirm_password_email_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_confirm_password_email_slices_gen.go b/tg/tl_account_confirm_password_email_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_confirm_password_email_slices_gen.go +++ b/tg/tl_account_confirm_password_email_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_confirm_phone_gen.go b/tg/tl_account_confirm_phone_gen.go index 15d7d5e56c..2b46f21a3c 100644 --- a/tg/tl_account_confirm_phone_gen.go +++ b/tg/tl_account_confirm_phone_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_confirm_phone_slices_gen.go b/tg/tl_account_confirm_phone_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_confirm_phone_slices_gen.go +++ b/tg/tl_account_confirm_phone_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_connected_bots_gen.go b/tg/tl_account_connected_bots_gen.go index 65a042bfe4..6d12e9302f 100644 --- a/tg/tl_account_connected_bots_gen.go +++ b/tg/tl_account_connected_bots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_connected_bots_slices_gen.go b/tg/tl_account_connected_bots_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_connected_bots_slices_gen.go +++ b/tg/tl_account_connected_bots_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_content_settings_gen.go b/tg/tl_account_content_settings_gen.go index 1f67d844f4..59a54fa9ba 100644 --- a/tg/tl_account_content_settings_gen.go +++ b/tg/tl_account_content_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_content_settings_slices_gen.go b/tg/tl_account_content_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_content_settings_slices_gen.go +++ b/tg/tl_account_content_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_create_business_chat_link_gen.go b/tg/tl_account_create_business_chat_link_gen.go index 470be13020..cd8c927054 100644 --- a/tg/tl_account_create_business_chat_link_gen.go +++ b/tg/tl_account_create_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_create_business_chat_link_slices_gen.go b/tg/tl_account_create_business_chat_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_create_business_chat_link_slices_gen.go +++ b/tg/tl_account_create_business_chat_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_create_theme_gen.go b/tg/tl_account_create_theme_gen.go index f9cf7ca4c4..cdf7bce2ce 100644 --- a/tg/tl_account_create_theme_gen.go +++ b/tg/tl_account_create_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_create_theme_slices_gen.go b/tg/tl_account_create_theme_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_create_theme_slices_gen.go +++ b/tg/tl_account_create_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_days_ttl_gen.go b/tg/tl_account_days_ttl_gen.go index 764eafb1b8..a559a41071 100644 --- a/tg/tl_account_days_ttl_gen.go +++ b/tg/tl_account_days_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_days_ttl_slices_gen.go b/tg/tl_account_days_ttl_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_days_ttl_slices_gen.go +++ b/tg/tl_account_days_ttl_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_decline_password_reset_gen.go b/tg/tl_account_decline_password_reset_gen.go index 2c86f36ed7..cbc875325f 100644 --- a/tg/tl_account_decline_password_reset_gen.go +++ b/tg/tl_account_decline_password_reset_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_decline_password_reset_slices_gen.go b/tg/tl_account_decline_password_reset_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_decline_password_reset_slices_gen.go +++ b/tg/tl_account_decline_password_reset_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_delete_account_gen.go b/tg/tl_account_delete_account_gen.go index e1d109d310..ab97126cf1 100644 --- a/tg/tl_account_delete_account_gen.go +++ b/tg/tl_account_delete_account_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_delete_account_slices_gen.go b/tg/tl_account_delete_account_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_delete_account_slices_gen.go +++ b/tg/tl_account_delete_account_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_delete_auto_save_exceptions_gen.go b/tg/tl_account_delete_auto_save_exceptions_gen.go index c42bdc7126..aac71ea257 100644 --- a/tg/tl_account_delete_auto_save_exceptions_gen.go +++ b/tg/tl_account_delete_auto_save_exceptions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_delete_auto_save_exceptions_slices_gen.go b/tg/tl_account_delete_auto_save_exceptions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_delete_auto_save_exceptions_slices_gen.go +++ b/tg/tl_account_delete_auto_save_exceptions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_delete_business_chat_link_gen.go b/tg/tl_account_delete_business_chat_link_gen.go index 18c3334129..d0a31eac16 100644 --- a/tg/tl_account_delete_business_chat_link_gen.go +++ b/tg/tl_account_delete_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_delete_business_chat_link_slices_gen.go b/tg/tl_account_delete_business_chat_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_delete_business_chat_link_slices_gen.go +++ b/tg/tl_account_delete_business_chat_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_delete_secure_value_gen.go b/tg/tl_account_delete_secure_value_gen.go index 453822d8e0..6870a37164 100644 --- a/tg/tl_account_delete_secure_value_gen.go +++ b/tg/tl_account_delete_secure_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_delete_secure_value_slices_gen.go b/tg/tl_account_delete_secure_value_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_delete_secure_value_slices_gen.go +++ b/tg/tl_account_delete_secure_value_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_disable_peer_connected_bot_gen.go b/tg/tl_account_disable_peer_connected_bot_gen.go index 5fb5da7205..3a4abcbe7d 100644 --- a/tg/tl_account_disable_peer_connected_bot_gen.go +++ b/tg/tl_account_disable_peer_connected_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_disable_peer_connected_bot_slices_gen.go b/tg/tl_account_disable_peer_connected_bot_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_disable_peer_connected_bot_slices_gen.go +++ b/tg/tl_account_disable_peer_connected_bot_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_edit_business_chat_link_gen.go b/tg/tl_account_edit_business_chat_link_gen.go index 9c59d59fb9..1411c7a39f 100644 --- a/tg/tl_account_edit_business_chat_link_gen.go +++ b/tg/tl_account_edit_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_edit_business_chat_link_slices_gen.go b/tg/tl_account_edit_business_chat_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_edit_business_chat_link_slices_gen.go +++ b/tg/tl_account_edit_business_chat_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_email_verified_gen.go b/tg/tl_account_email_verified_gen.go index 2bf2f91195..b186f5e067 100644 --- a/tg/tl_account_email_verified_gen.go +++ b/tg/tl_account_email_verified_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_email_verified_slices_gen.go b/tg/tl_account_email_verified_slices_gen.go index 96be66b80b..4319a7b0c9 100644 --- a/tg/tl_account_email_verified_slices_gen.go +++ b/tg/tl_account_email_verified_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_emoji_statuses_gen.go b/tg/tl_account_emoji_statuses_gen.go index 91bf2f80d6..bb733b64ee 100644 --- a/tg/tl_account_emoji_statuses_gen.go +++ b/tg/tl_account_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_emoji_statuses_slices_gen.go b/tg/tl_account_emoji_statuses_slices_gen.go index fea51ead7a..1e127221e2 100644 --- a/tg/tl_account_emoji_statuses_slices_gen.go +++ b/tg/tl_account_emoji_statuses_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_finish_takeout_session_gen.go b/tg/tl_account_finish_takeout_session_gen.go index 0a28e7ceb7..9bc49f04de 100644 --- a/tg/tl_account_finish_takeout_session_gen.go +++ b/tg/tl_account_finish_takeout_session_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_finish_takeout_session_slices_gen.go b/tg/tl_account_finish_takeout_session_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_finish_takeout_session_slices_gen.go +++ b/tg/tl_account_finish_takeout_session_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_account_ttl_gen.go b/tg/tl_account_get_account_ttl_gen.go index 976bd55372..fb564a13d5 100644 --- a/tg/tl_account_get_account_ttl_gen.go +++ b/tg/tl_account_get_account_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_account_ttl_slices_gen.go b/tg/tl_account_get_account_ttl_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_account_ttl_slices_gen.go +++ b/tg/tl_account_get_account_ttl_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_all_secure_values_gen.go b/tg/tl_account_get_all_secure_values_gen.go index 7c7879cb9b..ff9aaf70e8 100644 --- a/tg/tl_account_get_all_secure_values_gen.go +++ b/tg/tl_account_get_all_secure_values_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_all_secure_values_slices_gen.go b/tg/tl_account_get_all_secure_values_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_all_secure_values_slices_gen.go +++ b/tg/tl_account_get_all_secure_values_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_authorization_form_gen.go b/tg/tl_account_get_authorization_form_gen.go index 6e90b44d01..e4da158875 100644 --- a/tg/tl_account_get_authorization_form_gen.go +++ b/tg/tl_account_get_authorization_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_authorization_form_slices_gen.go b/tg/tl_account_get_authorization_form_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_authorization_form_slices_gen.go +++ b/tg/tl_account_get_authorization_form_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_authorizations_gen.go b/tg/tl_account_get_authorizations_gen.go index 65c66f62af..1db96c6324 100644 --- a/tg/tl_account_get_authorizations_gen.go +++ b/tg/tl_account_get_authorizations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_authorizations_slices_gen.go b/tg/tl_account_get_authorizations_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_authorizations_slices_gen.go +++ b/tg/tl_account_get_authorizations_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_auto_download_settings_gen.go b/tg/tl_account_get_auto_download_settings_gen.go index 6d8f18d3c1..0e29d9872a 100644 --- a/tg/tl_account_get_auto_download_settings_gen.go +++ b/tg/tl_account_get_auto_download_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_auto_download_settings_slices_gen.go b/tg/tl_account_get_auto_download_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_auto_download_settings_slices_gen.go +++ b/tg/tl_account_get_auto_download_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_auto_save_settings_gen.go b/tg/tl_account_get_auto_save_settings_gen.go index 7d92553676..10b7b9bfd7 100644 --- a/tg/tl_account_get_auto_save_settings_gen.go +++ b/tg/tl_account_get_auto_save_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_auto_save_settings_slices_gen.go b/tg/tl_account_get_auto_save_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_auto_save_settings_slices_gen.go +++ b/tg/tl_account_get_auto_save_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_bot_business_connection_gen.go b/tg/tl_account_get_bot_business_connection_gen.go index ace93c4da3..2626b48f6f 100644 --- a/tg/tl_account_get_bot_business_connection_gen.go +++ b/tg/tl_account_get_bot_business_connection_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_bot_business_connection_slices_gen.go b/tg/tl_account_get_bot_business_connection_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_bot_business_connection_slices_gen.go +++ b/tg/tl_account_get_bot_business_connection_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_business_chat_links_gen.go b/tg/tl_account_get_business_chat_links_gen.go index 8ec89607ee..508a2b1a2e 100644 --- a/tg/tl_account_get_business_chat_links_gen.go +++ b/tg/tl_account_get_business_chat_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_business_chat_links_slices_gen.go b/tg/tl_account_get_business_chat_links_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_business_chat_links_slices_gen.go +++ b/tg/tl_account_get_business_chat_links_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_channel_default_emoji_statuses_gen.go b/tg/tl_account_get_channel_default_emoji_statuses_gen.go index 513fb02c79..68f877a87f 100644 --- a/tg/tl_account_get_channel_default_emoji_statuses_gen.go +++ b/tg/tl_account_get_channel_default_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_channel_default_emoji_statuses_slices_gen.go b/tg/tl_account_get_channel_default_emoji_statuses_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_channel_default_emoji_statuses_slices_gen.go +++ b/tg/tl_account_get_channel_default_emoji_statuses_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_channel_restricted_status_emojis_gen.go b/tg/tl_account_get_channel_restricted_status_emojis_gen.go index 401bc2098b..b1233730bb 100644 --- a/tg/tl_account_get_channel_restricted_status_emojis_gen.go +++ b/tg/tl_account_get_channel_restricted_status_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_channel_restricted_status_emojis_slices_gen.go b/tg/tl_account_get_channel_restricted_status_emojis_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_channel_restricted_status_emojis_slices_gen.go +++ b/tg/tl_account_get_channel_restricted_status_emojis_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_chat_themes_gen.go b/tg/tl_account_get_chat_themes_gen.go index f2cf88e81f..1650ab3d02 100644 --- a/tg/tl_account_get_chat_themes_gen.go +++ b/tg/tl_account_get_chat_themes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_chat_themes_slices_gen.go b/tg/tl_account_get_chat_themes_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_chat_themes_slices_gen.go +++ b/tg/tl_account_get_chat_themes_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_connected_bots_gen.go b/tg/tl_account_get_connected_bots_gen.go index 8053d49ccd..a1ffc4ac18 100644 --- a/tg/tl_account_get_connected_bots_gen.go +++ b/tg/tl_account_get_connected_bots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_connected_bots_slices_gen.go b/tg/tl_account_get_connected_bots_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_connected_bots_slices_gen.go +++ b/tg/tl_account_get_connected_bots_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_contact_sign_up_notification_gen.go b/tg/tl_account_get_contact_sign_up_notification_gen.go index aef3fb0f3a..93502c0026 100644 --- a/tg/tl_account_get_contact_sign_up_notification_gen.go +++ b/tg/tl_account_get_contact_sign_up_notification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_contact_sign_up_notification_slices_gen.go b/tg/tl_account_get_contact_sign_up_notification_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_contact_sign_up_notification_slices_gen.go +++ b/tg/tl_account_get_contact_sign_up_notification_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_content_settings_gen.go b/tg/tl_account_get_content_settings_gen.go index c215ad0062..1b0c759bce 100644 --- a/tg/tl_account_get_content_settings_gen.go +++ b/tg/tl_account_get_content_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_content_settings_slices_gen.go b/tg/tl_account_get_content_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_content_settings_slices_gen.go +++ b/tg/tl_account_get_content_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_default_background_emojis_gen.go b/tg/tl_account_get_default_background_emojis_gen.go index bd8115de2f..b036eaa7d7 100644 --- a/tg/tl_account_get_default_background_emojis_gen.go +++ b/tg/tl_account_get_default_background_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_default_background_emojis_slices_gen.go b/tg/tl_account_get_default_background_emojis_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_default_background_emojis_slices_gen.go +++ b/tg/tl_account_get_default_background_emojis_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_default_emoji_statuses_gen.go b/tg/tl_account_get_default_emoji_statuses_gen.go index 264a08b155..0d3d327e3c 100644 --- a/tg/tl_account_get_default_emoji_statuses_gen.go +++ b/tg/tl_account_get_default_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_default_emoji_statuses_slices_gen.go b/tg/tl_account_get_default_emoji_statuses_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_default_emoji_statuses_slices_gen.go +++ b/tg/tl_account_get_default_emoji_statuses_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_default_group_photo_emojis_gen.go b/tg/tl_account_get_default_group_photo_emojis_gen.go index 91eeb72ec9..69cc8b02d6 100644 --- a/tg/tl_account_get_default_group_photo_emojis_gen.go +++ b/tg/tl_account_get_default_group_photo_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_default_group_photo_emojis_slices_gen.go b/tg/tl_account_get_default_group_photo_emojis_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_default_group_photo_emojis_slices_gen.go +++ b/tg/tl_account_get_default_group_photo_emojis_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_default_profile_photo_emojis_gen.go b/tg/tl_account_get_default_profile_photo_emojis_gen.go index 2d67a2abf2..668568c12a 100644 --- a/tg/tl_account_get_default_profile_photo_emojis_gen.go +++ b/tg/tl_account_get_default_profile_photo_emojis_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_default_profile_photo_emojis_slices_gen.go b/tg/tl_account_get_default_profile_photo_emojis_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_default_profile_photo_emojis_slices_gen.go +++ b/tg/tl_account_get_default_profile_photo_emojis_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_global_privacy_settings_gen.go b/tg/tl_account_get_global_privacy_settings_gen.go index 46e93b6e21..8803d0585c 100644 --- a/tg/tl_account_get_global_privacy_settings_gen.go +++ b/tg/tl_account_get_global_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_global_privacy_settings_slices_gen.go b/tg/tl_account_get_global_privacy_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_global_privacy_settings_slices_gen.go +++ b/tg/tl_account_get_global_privacy_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_multi_wall_papers_gen.go b/tg/tl_account_get_multi_wall_papers_gen.go index 2b54d7980c..0822642d5e 100644 --- a/tg/tl_account_get_multi_wall_papers_gen.go +++ b/tg/tl_account_get_multi_wall_papers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_multi_wall_papers_slices_gen.go b/tg/tl_account_get_multi_wall_papers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_multi_wall_papers_slices_gen.go +++ b/tg/tl_account_get_multi_wall_papers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_notify_exceptions_gen.go b/tg/tl_account_get_notify_exceptions_gen.go index 8fab584003..99efe905b8 100644 --- a/tg/tl_account_get_notify_exceptions_gen.go +++ b/tg/tl_account_get_notify_exceptions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_notify_exceptions_slices_gen.go b/tg/tl_account_get_notify_exceptions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_notify_exceptions_slices_gen.go +++ b/tg/tl_account_get_notify_exceptions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_notify_settings_gen.go b/tg/tl_account_get_notify_settings_gen.go index 4c6353b1bd..6012250a97 100644 --- a/tg/tl_account_get_notify_settings_gen.go +++ b/tg/tl_account_get_notify_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_notify_settings_slices_gen.go b/tg/tl_account_get_notify_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_notify_settings_slices_gen.go +++ b/tg/tl_account_get_notify_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_password_gen.go b/tg/tl_account_get_password_gen.go index c809a118c0..66936d26a4 100644 --- a/tg/tl_account_get_password_gen.go +++ b/tg/tl_account_get_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_password_settings_gen.go b/tg/tl_account_get_password_settings_gen.go index fda1ced275..ec132257c0 100644 --- a/tg/tl_account_get_password_settings_gen.go +++ b/tg/tl_account_get_password_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_password_settings_slices_gen.go b/tg/tl_account_get_password_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_password_settings_slices_gen.go +++ b/tg/tl_account_get_password_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_password_slices_gen.go b/tg/tl_account_get_password_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_password_slices_gen.go +++ b/tg/tl_account_get_password_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_privacy_gen.go b/tg/tl_account_get_privacy_gen.go index c1db04e1b1..6ed99d361d 100644 --- a/tg/tl_account_get_privacy_gen.go +++ b/tg/tl_account_get_privacy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_privacy_slices_gen.go b/tg/tl_account_get_privacy_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_privacy_slices_gen.go +++ b/tg/tl_account_get_privacy_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_reactions_notify_settings_gen.go b/tg/tl_account_get_reactions_notify_settings_gen.go index bfc53262dc..5fa791d1a8 100644 --- a/tg/tl_account_get_reactions_notify_settings_gen.go +++ b/tg/tl_account_get_reactions_notify_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_reactions_notify_settings_slices_gen.go b/tg/tl_account_get_reactions_notify_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_reactions_notify_settings_slices_gen.go +++ b/tg/tl_account_get_reactions_notify_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_recent_emoji_statuses_gen.go b/tg/tl_account_get_recent_emoji_statuses_gen.go index f3ef1f535c..4bc56fbac4 100644 --- a/tg/tl_account_get_recent_emoji_statuses_gen.go +++ b/tg/tl_account_get_recent_emoji_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_recent_emoji_statuses_slices_gen.go b/tg/tl_account_get_recent_emoji_statuses_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_recent_emoji_statuses_slices_gen.go +++ b/tg/tl_account_get_recent_emoji_statuses_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_saved_ringtones_gen.go b/tg/tl_account_get_saved_ringtones_gen.go index bdc68ecba4..ef340a0407 100644 --- a/tg/tl_account_get_saved_ringtones_gen.go +++ b/tg/tl_account_get_saved_ringtones_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_saved_ringtones_slices_gen.go b/tg/tl_account_get_saved_ringtones_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_saved_ringtones_slices_gen.go +++ b/tg/tl_account_get_saved_ringtones_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_secure_value_gen.go b/tg/tl_account_get_secure_value_gen.go index 122bc0d464..d92fe20e17 100644 --- a/tg/tl_account_get_secure_value_gen.go +++ b/tg/tl_account_get_secure_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_secure_value_slices_gen.go b/tg/tl_account_get_secure_value_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_secure_value_slices_gen.go +++ b/tg/tl_account_get_secure_value_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_theme_gen.go b/tg/tl_account_get_theme_gen.go index 1ba8b55d11..c52972de9b 100644 --- a/tg/tl_account_get_theme_gen.go +++ b/tg/tl_account_get_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_theme_slices_gen.go b/tg/tl_account_get_theme_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_theme_slices_gen.go +++ b/tg/tl_account_get_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_themes_gen.go b/tg/tl_account_get_themes_gen.go index 057b625b3d..6af7f936f2 100644 --- a/tg/tl_account_get_themes_gen.go +++ b/tg/tl_account_get_themes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_themes_slices_gen.go b/tg/tl_account_get_themes_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_themes_slices_gen.go +++ b/tg/tl_account_get_themes_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_tmp_password_gen.go b/tg/tl_account_get_tmp_password_gen.go index d10decfaf9..4ec3ea9159 100644 --- a/tg/tl_account_get_tmp_password_gen.go +++ b/tg/tl_account_get_tmp_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_tmp_password_slices_gen.go b/tg/tl_account_get_tmp_password_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_tmp_password_slices_gen.go +++ b/tg/tl_account_get_tmp_password_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_wall_paper_gen.go b/tg/tl_account_get_wall_paper_gen.go index fe7f0c34bd..6d7dfd77f1 100644 --- a/tg/tl_account_get_wall_paper_gen.go +++ b/tg/tl_account_get_wall_paper_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_wall_paper_slices_gen.go b/tg/tl_account_get_wall_paper_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_wall_paper_slices_gen.go +++ b/tg/tl_account_get_wall_paper_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_wall_papers_gen.go b/tg/tl_account_get_wall_papers_gen.go index f3eb94824a..0c3ec4c1ae 100644 --- a/tg/tl_account_get_wall_papers_gen.go +++ b/tg/tl_account_get_wall_papers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_wall_papers_slices_gen.go b/tg/tl_account_get_wall_papers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_wall_papers_slices_gen.go +++ b/tg/tl_account_get_wall_papers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_web_authorizations_gen.go b/tg/tl_account_get_web_authorizations_gen.go index 6453a4b4c3..267cf5098b 100644 --- a/tg/tl_account_get_web_authorizations_gen.go +++ b/tg/tl_account_get_web_authorizations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_get_web_authorizations_slices_gen.go b/tg/tl_account_get_web_authorizations_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_get_web_authorizations_slices_gen.go +++ b/tg/tl_account_get_web_authorizations_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_init_takeout_session_gen.go b/tg/tl_account_init_takeout_session_gen.go index 7e19f0f453..949ce0261f 100644 --- a/tg/tl_account_init_takeout_session_gen.go +++ b/tg/tl_account_init_takeout_session_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_init_takeout_session_slices_gen.go b/tg/tl_account_init_takeout_session_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_init_takeout_session_slices_gen.go +++ b/tg/tl_account_init_takeout_session_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_install_theme_gen.go b/tg/tl_account_install_theme_gen.go index 364ade48de..64a2c846b2 100644 --- a/tg/tl_account_install_theme_gen.go +++ b/tg/tl_account_install_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_install_theme_slices_gen.go b/tg/tl_account_install_theme_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_install_theme_slices_gen.go +++ b/tg/tl_account_install_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_install_wall_paper_gen.go b/tg/tl_account_install_wall_paper_gen.go index 45d59dee23..83461b54fe 100644 --- a/tg/tl_account_install_wall_paper_gen.go +++ b/tg/tl_account_install_wall_paper_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_install_wall_paper_slices_gen.go b/tg/tl_account_install_wall_paper_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_install_wall_paper_slices_gen.go +++ b/tg/tl_account_install_wall_paper_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_invalidate_sign_in_codes_gen.go b/tg/tl_account_invalidate_sign_in_codes_gen.go index a066b9d04e..b282cc74f0 100644 --- a/tg/tl_account_invalidate_sign_in_codes_gen.go +++ b/tg/tl_account_invalidate_sign_in_codes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_invalidate_sign_in_codes_slices_gen.go b/tg/tl_account_invalidate_sign_in_codes_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_invalidate_sign_in_codes_slices_gen.go +++ b/tg/tl_account_invalidate_sign_in_codes_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_password_gen.go b/tg/tl_account_password_gen.go index e5b1145f56..4ba8fbf762 100644 --- a/tg/tl_account_password_gen.go +++ b/tg/tl_account_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_password_input_settings_gen.go b/tg/tl_account_password_input_settings_gen.go index d4a80e3a15..e7f72a2caf 100644 --- a/tg/tl_account_password_input_settings_gen.go +++ b/tg/tl_account_password_input_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_password_input_settings_slices_gen.go b/tg/tl_account_password_input_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_password_input_settings_slices_gen.go +++ b/tg/tl_account_password_input_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_password_settings_gen.go b/tg/tl_account_password_settings_gen.go index 1e272a9fed..8ca6ad38fa 100644 --- a/tg/tl_account_password_settings_gen.go +++ b/tg/tl_account_password_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_password_settings_slices_gen.go b/tg/tl_account_password_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_password_settings_slices_gen.go +++ b/tg/tl_account_password_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_password_slices_gen.go b/tg/tl_account_password_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_password_slices_gen.go +++ b/tg/tl_account_password_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_privacy_rules_gen.go b/tg/tl_account_privacy_rules_gen.go index 29ba511a23..0b6abccf9d 100644 --- a/tg/tl_account_privacy_rules_gen.go +++ b/tg/tl_account_privacy_rules_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_privacy_rules_slices_gen.go b/tg/tl_account_privacy_rules_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_privacy_rules_slices_gen.go +++ b/tg/tl_account_privacy_rules_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_register_device_gen.go b/tg/tl_account_register_device_gen.go index d0acc15ca8..5dbd4dde4d 100644 --- a/tg/tl_account_register_device_gen.go +++ b/tg/tl_account_register_device_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_register_device_slices_gen.go b/tg/tl_account_register_device_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_register_device_slices_gen.go +++ b/tg/tl_account_register_device_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reorder_usernames_gen.go b/tg/tl_account_reorder_usernames_gen.go index e80bd2f6b6..c7edd6cb36 100644 --- a/tg/tl_account_reorder_usernames_gen.go +++ b/tg/tl_account_reorder_usernames_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reorder_usernames_slices_gen.go b/tg/tl_account_reorder_usernames_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_reorder_usernames_slices_gen.go +++ b/tg/tl_account_reorder_usernames_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_report_peer_gen.go b/tg/tl_account_report_peer_gen.go index 67f38b1b3e..e3c076ed61 100644 --- a/tg/tl_account_report_peer_gen.go +++ b/tg/tl_account_report_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_report_peer_slices_gen.go b/tg/tl_account_report_peer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_report_peer_slices_gen.go +++ b/tg/tl_account_report_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_report_profile_photo_gen.go b/tg/tl_account_report_profile_photo_gen.go index e011884936..23446b5d9c 100644 --- a/tg/tl_account_report_profile_photo_gen.go +++ b/tg/tl_account_report_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_report_profile_photo_slices_gen.go b/tg/tl_account_report_profile_photo_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_report_profile_photo_slices_gen.go +++ b/tg/tl_account_report_profile_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_resend_password_email_gen.go b/tg/tl_account_resend_password_email_gen.go index 44a3f3434f..8e210fe8fc 100644 --- a/tg/tl_account_resend_password_email_gen.go +++ b/tg/tl_account_resend_password_email_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_resend_password_email_slices_gen.go b/tg/tl_account_resend_password_email_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_resend_password_email_slices_gen.go +++ b/tg/tl_account_resend_password_email_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_authorization_gen.go b/tg/tl_account_reset_authorization_gen.go index 65a5c4dd72..72b2c85296 100644 --- a/tg/tl_account_reset_authorization_gen.go +++ b/tg/tl_account_reset_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_authorization_slices_gen.go b/tg/tl_account_reset_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_reset_authorization_slices_gen.go +++ b/tg/tl_account_reset_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_notify_settings_gen.go b/tg/tl_account_reset_notify_settings_gen.go index 7dd3cb7549..977710d420 100644 --- a/tg/tl_account_reset_notify_settings_gen.go +++ b/tg/tl_account_reset_notify_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_notify_settings_slices_gen.go b/tg/tl_account_reset_notify_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_reset_notify_settings_slices_gen.go +++ b/tg/tl_account_reset_notify_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_password_gen.go b/tg/tl_account_reset_password_gen.go index 2c6369e189..5d2bad22e0 100644 --- a/tg/tl_account_reset_password_gen.go +++ b/tg/tl_account_reset_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_password_result_gen.go b/tg/tl_account_reset_password_result_gen.go index edd02387d7..1c86238791 100644 --- a/tg/tl_account_reset_password_result_gen.go +++ b/tg/tl_account_reset_password_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_password_result_slices_gen.go b/tg/tl_account_reset_password_result_slices_gen.go index dd9ded2c63..02854e871d 100644 --- a/tg/tl_account_reset_password_result_slices_gen.go +++ b/tg/tl_account_reset_password_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_password_slices_gen.go b/tg/tl_account_reset_password_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_reset_password_slices_gen.go +++ b/tg/tl_account_reset_password_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_wall_papers_gen.go b/tg/tl_account_reset_wall_papers_gen.go index d3102977b8..ac559e6f1f 100644 --- a/tg/tl_account_reset_wall_papers_gen.go +++ b/tg/tl_account_reset_wall_papers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_wall_papers_slices_gen.go b/tg/tl_account_reset_wall_papers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_reset_wall_papers_slices_gen.go +++ b/tg/tl_account_reset_wall_papers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_web_authorization_gen.go b/tg/tl_account_reset_web_authorization_gen.go index 470dacf509..c505e41f8b 100644 --- a/tg/tl_account_reset_web_authorization_gen.go +++ b/tg/tl_account_reset_web_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_web_authorization_slices_gen.go b/tg/tl_account_reset_web_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_reset_web_authorization_slices_gen.go +++ b/tg/tl_account_reset_web_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_web_authorizations_gen.go b/tg/tl_account_reset_web_authorizations_gen.go index 8e891baaaa..df8a9b77af 100644 --- a/tg/tl_account_reset_web_authorizations_gen.go +++ b/tg/tl_account_reset_web_authorizations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_reset_web_authorizations_slices_gen.go b/tg/tl_account_reset_web_authorizations_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_reset_web_authorizations_slices_gen.go +++ b/tg/tl_account_reset_web_authorizations_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_resolve_business_chat_link_gen.go b/tg/tl_account_resolve_business_chat_link_gen.go index dfb4b49dac..0931b1e2a0 100644 --- a/tg/tl_account_resolve_business_chat_link_gen.go +++ b/tg/tl_account_resolve_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_resolve_business_chat_link_slices_gen.go b/tg/tl_account_resolve_business_chat_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_resolve_business_chat_link_slices_gen.go +++ b/tg/tl_account_resolve_business_chat_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_resolved_business_chat_links_gen.go b/tg/tl_account_resolved_business_chat_links_gen.go index 44b92ffa79..505c021fbf 100644 --- a/tg/tl_account_resolved_business_chat_links_gen.go +++ b/tg/tl_account_resolved_business_chat_links_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_resolved_business_chat_links_slices_gen.go b/tg/tl_account_resolved_business_chat_links_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_resolved_business_chat_links_slices_gen.go +++ b/tg/tl_account_resolved_business_chat_links_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_auto_download_settings_gen.go b/tg/tl_account_save_auto_download_settings_gen.go index 6a6063df36..176d922347 100644 --- a/tg/tl_account_save_auto_download_settings_gen.go +++ b/tg/tl_account_save_auto_download_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_auto_download_settings_slices_gen.go b/tg/tl_account_save_auto_download_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_save_auto_download_settings_slices_gen.go +++ b/tg/tl_account_save_auto_download_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_auto_save_settings_gen.go b/tg/tl_account_save_auto_save_settings_gen.go index 337fdbca87..0849240ce3 100644 --- a/tg/tl_account_save_auto_save_settings_gen.go +++ b/tg/tl_account_save_auto_save_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_auto_save_settings_slices_gen.go b/tg/tl_account_save_auto_save_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_save_auto_save_settings_slices_gen.go +++ b/tg/tl_account_save_auto_save_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_ringtone_gen.go b/tg/tl_account_save_ringtone_gen.go index 2a8078c57d..f0a2ea43ad 100644 --- a/tg/tl_account_save_ringtone_gen.go +++ b/tg/tl_account_save_ringtone_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_ringtone_slices_gen.go b/tg/tl_account_save_ringtone_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_save_ringtone_slices_gen.go +++ b/tg/tl_account_save_ringtone_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_secure_value_gen.go b/tg/tl_account_save_secure_value_gen.go index efaa0076ea..42f9b367f1 100644 --- a/tg/tl_account_save_secure_value_gen.go +++ b/tg/tl_account_save_secure_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_secure_value_slices_gen.go b/tg/tl_account_save_secure_value_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_save_secure_value_slices_gen.go +++ b/tg/tl_account_save_secure_value_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_theme_gen.go b/tg/tl_account_save_theme_gen.go index d54b6028b8..80561feba2 100644 --- a/tg/tl_account_save_theme_gen.go +++ b/tg/tl_account_save_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_theme_slices_gen.go b/tg/tl_account_save_theme_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_save_theme_slices_gen.go +++ b/tg/tl_account_save_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_wall_paper_gen.go b/tg/tl_account_save_wall_paper_gen.go index 070e071656..eaf7c65195 100644 --- a/tg/tl_account_save_wall_paper_gen.go +++ b/tg/tl_account_save_wall_paper_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_save_wall_paper_slices_gen.go b/tg/tl_account_save_wall_paper_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_save_wall_paper_slices_gen.go +++ b/tg/tl_account_save_wall_paper_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_saved_ringtone_gen.go b/tg/tl_account_saved_ringtone_gen.go index 36fc8bbee7..94d99c996f 100644 --- a/tg/tl_account_saved_ringtone_gen.go +++ b/tg/tl_account_saved_ringtone_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_saved_ringtone_slices_gen.go b/tg/tl_account_saved_ringtone_slices_gen.go index fef0e1fbc2..89380a76ae 100644 --- a/tg/tl_account_saved_ringtone_slices_gen.go +++ b/tg/tl_account_saved_ringtone_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_saved_ringtones_gen.go b/tg/tl_account_saved_ringtones_gen.go index 5545718440..b1566a13a4 100644 --- a/tg/tl_account_saved_ringtones_gen.go +++ b/tg/tl_account_saved_ringtones_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_saved_ringtones_slices_gen.go b/tg/tl_account_saved_ringtones_slices_gen.go index bfe59c9e46..7ddd9b27dd 100644 --- a/tg/tl_account_saved_ringtones_slices_gen.go +++ b/tg/tl_account_saved_ringtones_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_send_change_phone_code_gen.go b/tg/tl_account_send_change_phone_code_gen.go index 82f6e4000f..ae40bf9dcb 100644 --- a/tg/tl_account_send_change_phone_code_gen.go +++ b/tg/tl_account_send_change_phone_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_send_change_phone_code_slices_gen.go b/tg/tl_account_send_change_phone_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_send_change_phone_code_slices_gen.go +++ b/tg/tl_account_send_change_phone_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_send_confirm_phone_code_gen.go b/tg/tl_account_send_confirm_phone_code_gen.go index b0b31c21e1..2a6427adbc 100644 --- a/tg/tl_account_send_confirm_phone_code_gen.go +++ b/tg/tl_account_send_confirm_phone_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_send_confirm_phone_code_slices_gen.go b/tg/tl_account_send_confirm_phone_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_send_confirm_phone_code_slices_gen.go +++ b/tg/tl_account_send_confirm_phone_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_send_verify_email_code_gen.go b/tg/tl_account_send_verify_email_code_gen.go index c1beffd5aa..483f34ebc4 100644 --- a/tg/tl_account_send_verify_email_code_gen.go +++ b/tg/tl_account_send_verify_email_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_send_verify_email_code_slices_gen.go b/tg/tl_account_send_verify_email_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_send_verify_email_code_slices_gen.go +++ b/tg/tl_account_send_verify_email_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_send_verify_phone_code_gen.go b/tg/tl_account_send_verify_phone_code_gen.go index f090a1ecc3..3bfbcbb8ff 100644 --- a/tg/tl_account_send_verify_phone_code_gen.go +++ b/tg/tl_account_send_verify_phone_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_send_verify_phone_code_slices_gen.go b/tg/tl_account_send_verify_phone_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_send_verify_phone_code_slices_gen.go +++ b/tg/tl_account_send_verify_phone_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_sent_email_code_gen.go b/tg/tl_account_sent_email_code_gen.go index 67e50606d6..f43037a21c 100644 --- a/tg/tl_account_sent_email_code_gen.go +++ b/tg/tl_account_sent_email_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_sent_email_code_slices_gen.go b/tg/tl_account_sent_email_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_sent_email_code_slices_gen.go +++ b/tg/tl_account_sent_email_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_account_ttl_gen.go b/tg/tl_account_set_account_ttl_gen.go index 35423b2770..c7c7cf5dd5 100644 --- a/tg/tl_account_set_account_ttl_gen.go +++ b/tg/tl_account_set_account_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_account_ttl_slices_gen.go b/tg/tl_account_set_account_ttl_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_set_account_ttl_slices_gen.go +++ b/tg/tl_account_set_account_ttl_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_authorization_ttl_gen.go b/tg/tl_account_set_authorization_ttl_gen.go index 3b85eeec44..516addedf4 100644 --- a/tg/tl_account_set_authorization_ttl_gen.go +++ b/tg/tl_account_set_authorization_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_authorization_ttl_slices_gen.go b/tg/tl_account_set_authorization_ttl_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_set_authorization_ttl_slices_gen.go +++ b/tg/tl_account_set_authorization_ttl_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_contact_sign_up_notification_gen.go b/tg/tl_account_set_contact_sign_up_notification_gen.go index 507e5df288..23f509974c 100644 --- a/tg/tl_account_set_contact_sign_up_notification_gen.go +++ b/tg/tl_account_set_contact_sign_up_notification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_contact_sign_up_notification_slices_gen.go b/tg/tl_account_set_contact_sign_up_notification_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_set_contact_sign_up_notification_slices_gen.go +++ b/tg/tl_account_set_contact_sign_up_notification_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_content_settings_gen.go b/tg/tl_account_set_content_settings_gen.go index 8ed0cb1c6b..2fccc49a05 100644 --- a/tg/tl_account_set_content_settings_gen.go +++ b/tg/tl_account_set_content_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_content_settings_slices_gen.go b/tg/tl_account_set_content_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_set_content_settings_slices_gen.go +++ b/tg/tl_account_set_content_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_global_privacy_settings_gen.go b/tg/tl_account_set_global_privacy_settings_gen.go index 7305c46f8f..7df1a8e4c6 100644 --- a/tg/tl_account_set_global_privacy_settings_gen.go +++ b/tg/tl_account_set_global_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_global_privacy_settings_slices_gen.go b/tg/tl_account_set_global_privacy_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_set_global_privacy_settings_slices_gen.go +++ b/tg/tl_account_set_global_privacy_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_privacy_gen.go b/tg/tl_account_set_privacy_gen.go index dcef07d40a..07b6de6772 100644 --- a/tg/tl_account_set_privacy_gen.go +++ b/tg/tl_account_set_privacy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_privacy_slices_gen.go b/tg/tl_account_set_privacy_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_set_privacy_slices_gen.go +++ b/tg/tl_account_set_privacy_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_reactions_notify_settings_gen.go b/tg/tl_account_set_reactions_notify_settings_gen.go index c9867de3d0..8c1cb3e7ed 100644 --- a/tg/tl_account_set_reactions_notify_settings_gen.go +++ b/tg/tl_account_set_reactions_notify_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_set_reactions_notify_settings_slices_gen.go b/tg/tl_account_set_reactions_notify_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_set_reactions_notify_settings_slices_gen.go +++ b/tg/tl_account_set_reactions_notify_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_takeout_gen.go b/tg/tl_account_takeout_gen.go index 7f59991b55..c7c2ed14c2 100644 --- a/tg/tl_account_takeout_gen.go +++ b/tg/tl_account_takeout_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_takeout_slices_gen.go b/tg/tl_account_takeout_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_takeout_slices_gen.go +++ b/tg/tl_account_takeout_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_themes_gen.go b/tg/tl_account_themes_gen.go index 1d448da04b..bdfe67b8b7 100644 --- a/tg/tl_account_themes_gen.go +++ b/tg/tl_account_themes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_themes_slices_gen.go b/tg/tl_account_themes_slices_gen.go index 4444f878d1..86d99b8ebb 100644 --- a/tg/tl_account_themes_slices_gen.go +++ b/tg/tl_account_themes_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_tmp_password_gen.go b/tg/tl_account_tmp_password_gen.go index ce87a07aaa..af6189d9ac 100644 --- a/tg/tl_account_tmp_password_gen.go +++ b/tg/tl_account_tmp_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_tmp_password_slices_gen.go b/tg/tl_account_tmp_password_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_tmp_password_slices_gen.go +++ b/tg/tl_account_tmp_password_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_toggle_connected_bot_paused_gen.go b/tg/tl_account_toggle_connected_bot_paused_gen.go index 32464665c0..c6c0e22b3d 100644 --- a/tg/tl_account_toggle_connected_bot_paused_gen.go +++ b/tg/tl_account_toggle_connected_bot_paused_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_toggle_connected_bot_paused_slices_gen.go b/tg/tl_account_toggle_connected_bot_paused_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_toggle_connected_bot_paused_slices_gen.go +++ b/tg/tl_account_toggle_connected_bot_paused_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_toggle_sponsored_messages_gen.go b/tg/tl_account_toggle_sponsored_messages_gen.go index 5a03c2ba79..141d00130c 100644 --- a/tg/tl_account_toggle_sponsored_messages_gen.go +++ b/tg/tl_account_toggle_sponsored_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_toggle_sponsored_messages_slices_gen.go b/tg/tl_account_toggle_sponsored_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_toggle_sponsored_messages_slices_gen.go +++ b/tg/tl_account_toggle_sponsored_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_toggle_username_gen.go b/tg/tl_account_toggle_username_gen.go index 0514e6348c..75c1a26160 100644 --- a/tg/tl_account_toggle_username_gen.go +++ b/tg/tl_account_toggle_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_toggle_username_slices_gen.go b/tg/tl_account_toggle_username_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_toggle_username_slices_gen.go +++ b/tg/tl_account_toggle_username_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_unregister_device_gen.go b/tg/tl_account_unregister_device_gen.go index de7399a450..c550ab7d01 100644 --- a/tg/tl_account_unregister_device_gen.go +++ b/tg/tl_account_unregister_device_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_unregister_device_slices_gen.go b/tg/tl_account_unregister_device_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_unregister_device_slices_gen.go +++ b/tg/tl_account_unregister_device_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_birthday_gen.go b/tg/tl_account_update_birthday_gen.go index 0d355dfdcc..38b748bcf6 100644 --- a/tg/tl_account_update_birthday_gen.go +++ b/tg/tl_account_update_birthday_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_birthday_slices_gen.go b/tg/tl_account_update_birthday_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_birthday_slices_gen.go +++ b/tg/tl_account_update_birthday_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_away_message_gen.go b/tg/tl_account_update_business_away_message_gen.go index f5dd16469d..aa7787ac05 100644 --- a/tg/tl_account_update_business_away_message_gen.go +++ b/tg/tl_account_update_business_away_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_away_message_slices_gen.go b/tg/tl_account_update_business_away_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_business_away_message_slices_gen.go +++ b/tg/tl_account_update_business_away_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_greeting_message_gen.go b/tg/tl_account_update_business_greeting_message_gen.go index 5f194f21ff..0f45ea5529 100644 --- a/tg/tl_account_update_business_greeting_message_gen.go +++ b/tg/tl_account_update_business_greeting_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_greeting_message_slices_gen.go b/tg/tl_account_update_business_greeting_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_business_greeting_message_slices_gen.go +++ b/tg/tl_account_update_business_greeting_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_intro_gen.go b/tg/tl_account_update_business_intro_gen.go index a6a33986cf..e269459452 100644 --- a/tg/tl_account_update_business_intro_gen.go +++ b/tg/tl_account_update_business_intro_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_intro_slices_gen.go b/tg/tl_account_update_business_intro_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_business_intro_slices_gen.go +++ b/tg/tl_account_update_business_intro_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_location_gen.go b/tg/tl_account_update_business_location_gen.go index a765048b50..37f0754040 100644 --- a/tg/tl_account_update_business_location_gen.go +++ b/tg/tl_account_update_business_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_location_slices_gen.go b/tg/tl_account_update_business_location_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_business_location_slices_gen.go +++ b/tg/tl_account_update_business_location_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_work_hours_gen.go b/tg/tl_account_update_business_work_hours_gen.go index ce6a2e6ebe..6fbb01ad2c 100644 --- a/tg/tl_account_update_business_work_hours_gen.go +++ b/tg/tl_account_update_business_work_hours_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_business_work_hours_slices_gen.go b/tg/tl_account_update_business_work_hours_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_business_work_hours_slices_gen.go +++ b/tg/tl_account_update_business_work_hours_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_color_gen.go b/tg/tl_account_update_color_gen.go index ec4f2f4d20..99399ed968 100644 --- a/tg/tl_account_update_color_gen.go +++ b/tg/tl_account_update_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_color_slices_gen.go b/tg/tl_account_update_color_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_color_slices_gen.go +++ b/tg/tl_account_update_color_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_connected_bot_gen.go b/tg/tl_account_update_connected_bot_gen.go index 2814e6ac24..35d32d512f 100644 --- a/tg/tl_account_update_connected_bot_gen.go +++ b/tg/tl_account_update_connected_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_connected_bot_slices_gen.go b/tg/tl_account_update_connected_bot_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_connected_bot_slices_gen.go +++ b/tg/tl_account_update_connected_bot_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_device_locked_gen.go b/tg/tl_account_update_device_locked_gen.go index 6c26cab446..f48c41f823 100644 --- a/tg/tl_account_update_device_locked_gen.go +++ b/tg/tl_account_update_device_locked_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_device_locked_slices_gen.go b/tg/tl_account_update_device_locked_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_device_locked_slices_gen.go +++ b/tg/tl_account_update_device_locked_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_emoji_status_gen.go b/tg/tl_account_update_emoji_status_gen.go index 425b106b04..3eafc8bb06 100644 --- a/tg/tl_account_update_emoji_status_gen.go +++ b/tg/tl_account_update_emoji_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_emoji_status_slices_gen.go b/tg/tl_account_update_emoji_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_emoji_status_slices_gen.go +++ b/tg/tl_account_update_emoji_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_notify_settings_gen.go b/tg/tl_account_update_notify_settings_gen.go index d0eefa41a6..4f3c017752 100644 --- a/tg/tl_account_update_notify_settings_gen.go +++ b/tg/tl_account_update_notify_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_notify_settings_slices_gen.go b/tg/tl_account_update_notify_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_notify_settings_slices_gen.go +++ b/tg/tl_account_update_notify_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_password_settings_gen.go b/tg/tl_account_update_password_settings_gen.go index 68dd960078..9cf0366e61 100644 --- a/tg/tl_account_update_password_settings_gen.go +++ b/tg/tl_account_update_password_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_password_settings_slices_gen.go b/tg/tl_account_update_password_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_password_settings_slices_gen.go +++ b/tg/tl_account_update_password_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_personal_channel_gen.go b/tg/tl_account_update_personal_channel_gen.go index 51d7135bcc..e46f6ac697 100644 --- a/tg/tl_account_update_personal_channel_gen.go +++ b/tg/tl_account_update_personal_channel_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_personal_channel_slices_gen.go b/tg/tl_account_update_personal_channel_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_personal_channel_slices_gen.go +++ b/tg/tl_account_update_personal_channel_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_profile_gen.go b/tg/tl_account_update_profile_gen.go index bc7968e19d..53f1a9d843 100644 --- a/tg/tl_account_update_profile_gen.go +++ b/tg/tl_account_update_profile_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_profile_slices_gen.go b/tg/tl_account_update_profile_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_profile_slices_gen.go +++ b/tg/tl_account_update_profile_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_status_gen.go b/tg/tl_account_update_status_gen.go index 26bb8ee889..370ec5ca55 100644 --- a/tg/tl_account_update_status_gen.go +++ b/tg/tl_account_update_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_status_slices_gen.go b/tg/tl_account_update_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_status_slices_gen.go +++ b/tg/tl_account_update_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_theme_gen.go b/tg/tl_account_update_theme_gen.go index 0591daa454..5732f88610 100644 --- a/tg/tl_account_update_theme_gen.go +++ b/tg/tl_account_update_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_theme_slices_gen.go b/tg/tl_account_update_theme_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_theme_slices_gen.go +++ b/tg/tl_account_update_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_username_gen.go b/tg/tl_account_update_username_gen.go index f6305f1482..a8cf5caec0 100644 --- a/tg/tl_account_update_username_gen.go +++ b/tg/tl_account_update_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_update_username_slices_gen.go b/tg/tl_account_update_username_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_update_username_slices_gen.go +++ b/tg/tl_account_update_username_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_upload_ringtone_gen.go b/tg/tl_account_upload_ringtone_gen.go index a45b048893..372e173abf 100644 --- a/tg/tl_account_upload_ringtone_gen.go +++ b/tg/tl_account_upload_ringtone_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_upload_ringtone_slices_gen.go b/tg/tl_account_upload_ringtone_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_upload_ringtone_slices_gen.go +++ b/tg/tl_account_upload_ringtone_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_upload_theme_gen.go b/tg/tl_account_upload_theme_gen.go index 101e681413..32f06a1a8e 100644 --- a/tg/tl_account_upload_theme_gen.go +++ b/tg/tl_account_upload_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_upload_theme_slices_gen.go b/tg/tl_account_upload_theme_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_upload_theme_slices_gen.go +++ b/tg/tl_account_upload_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_upload_wall_paper_gen.go b/tg/tl_account_upload_wall_paper_gen.go index 7db9588355..118d67e730 100644 --- a/tg/tl_account_upload_wall_paper_gen.go +++ b/tg/tl_account_upload_wall_paper_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_upload_wall_paper_slices_gen.go b/tg/tl_account_upload_wall_paper_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_upload_wall_paper_slices_gen.go +++ b/tg/tl_account_upload_wall_paper_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_verify_email_gen.go b/tg/tl_account_verify_email_gen.go index cc633734a0..1ed0b5ec9b 100644 --- a/tg/tl_account_verify_email_gen.go +++ b/tg/tl_account_verify_email_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_verify_email_slices_gen.go b/tg/tl_account_verify_email_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_verify_email_slices_gen.go +++ b/tg/tl_account_verify_email_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_verify_phone_gen.go b/tg/tl_account_verify_phone_gen.go index 0eef9eda2e..25ddf04155 100644 --- a/tg/tl_account_verify_phone_gen.go +++ b/tg/tl_account_verify_phone_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_verify_phone_slices_gen.go b/tg/tl_account_verify_phone_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_verify_phone_slices_gen.go +++ b/tg/tl_account_verify_phone_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_wall_papers_gen.go b/tg/tl_account_wall_papers_gen.go index 6aad68af52..fbb3b28f14 100644 --- a/tg/tl_account_wall_papers_gen.go +++ b/tg/tl_account_wall_papers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_wall_papers_slices_gen.go b/tg/tl_account_wall_papers_slices_gen.go index 86b3867c83..c3e8327651 100644 --- a/tg/tl_account_wall_papers_slices_gen.go +++ b/tg/tl_account_wall_papers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_web_authorizations_gen.go b/tg/tl_account_web_authorizations_gen.go index 304d3a95a4..ff5f5afde4 100644 --- a/tg/tl_account_web_authorizations_gen.go +++ b/tg/tl_account_web_authorizations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_account_web_authorizations_slices_gen.go b/tg/tl_account_web_authorizations_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_account_web_authorizations_slices_gen.go +++ b/tg/tl_account_web_authorizations_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bot_gen.go b/tg/tl_attach_menu_bot_gen.go index a61290bfc6..88a342e3e4 100644 --- a/tg/tl_attach_menu_bot_gen.go +++ b/tg/tl_attach_menu_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bot_icon_color_gen.go b/tg/tl_attach_menu_bot_icon_color_gen.go index 6f4dab8a46..d10111aadd 100644 --- a/tg/tl_attach_menu_bot_icon_color_gen.go +++ b/tg/tl_attach_menu_bot_icon_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bot_icon_color_slices_gen.go b/tg/tl_attach_menu_bot_icon_color_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_attach_menu_bot_icon_color_slices_gen.go +++ b/tg/tl_attach_menu_bot_icon_color_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bot_icon_gen.go b/tg/tl_attach_menu_bot_icon_gen.go index 46f0b6f4e6..0dedabebcf 100644 --- a/tg/tl_attach_menu_bot_icon_gen.go +++ b/tg/tl_attach_menu_bot_icon_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bot_icon_slices_gen.go b/tg/tl_attach_menu_bot_icon_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_attach_menu_bot_icon_slices_gen.go +++ b/tg/tl_attach_menu_bot_icon_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bot_slices_gen.go b/tg/tl_attach_menu_bot_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_attach_menu_bot_slices_gen.go +++ b/tg/tl_attach_menu_bot_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bots_bot_gen.go b/tg/tl_attach_menu_bots_bot_gen.go index 82784332b7..91b6fcd2e5 100644 --- a/tg/tl_attach_menu_bots_bot_gen.go +++ b/tg/tl_attach_menu_bots_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bots_bot_slices_gen.go b/tg/tl_attach_menu_bots_bot_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_attach_menu_bots_bot_slices_gen.go +++ b/tg/tl_attach_menu_bots_bot_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bots_gen.go b/tg/tl_attach_menu_bots_gen.go index aab9129044..242ab42f3f 100644 --- a/tg/tl_attach_menu_bots_gen.go +++ b/tg/tl_attach_menu_bots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_bots_slices_gen.go b/tg/tl_attach_menu_bots_slices_gen.go index 10cfec8ab6..9ccd8d4645 100644 --- a/tg/tl_attach_menu_bots_slices_gen.go +++ b/tg/tl_attach_menu_bots_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_peer_type_gen.go b/tg/tl_attach_menu_peer_type_gen.go index e3717f6039..55bb88a9be 100644 --- a/tg/tl_attach_menu_peer_type_gen.go +++ b/tg/tl_attach_menu_peer_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_attach_menu_peer_type_slices_gen.go b/tg/tl_attach_menu_peer_type_slices_gen.go index 3c2dc75c22..f58b0a8b72 100644 --- a/tg/tl_attach_menu_peer_type_slices_gen.go +++ b/tg/tl_attach_menu_peer_type_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_accept_login_token_gen.go b/tg/tl_auth_accept_login_token_gen.go index 300e3b526b..64e1bbf900 100644 --- a/tg/tl_auth_accept_login_token_gen.go +++ b/tg/tl_auth_accept_login_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_accept_login_token_slices_gen.go b/tg/tl_auth_accept_login_token_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_accept_login_token_slices_gen.go +++ b/tg/tl_auth_accept_login_token_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_authorization_gen.go b/tg/tl_auth_authorization_gen.go index 0c5963d966..57b51d467a 100644 --- a/tg/tl_auth_authorization_gen.go +++ b/tg/tl_auth_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_authorization_slices_gen.go b/tg/tl_auth_authorization_slices_gen.go index b4847a5118..41bb7bc2f1 100644 --- a/tg/tl_auth_authorization_slices_gen.go +++ b/tg/tl_auth_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_bind_temp_auth_key_gen.go b/tg/tl_auth_bind_temp_auth_key_gen.go index 8858b07fd7..70345a34db 100644 --- a/tg/tl_auth_bind_temp_auth_key_gen.go +++ b/tg/tl_auth_bind_temp_auth_key_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_bind_temp_auth_key_slices_gen.go b/tg/tl_auth_bind_temp_auth_key_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_bind_temp_auth_key_slices_gen.go +++ b/tg/tl_auth_bind_temp_auth_key_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_cancel_code_gen.go b/tg/tl_auth_cancel_code_gen.go index f1996cda19..67b3536bc9 100644 --- a/tg/tl_auth_cancel_code_gen.go +++ b/tg/tl_auth_cancel_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_cancel_code_slices_gen.go b/tg/tl_auth_cancel_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_cancel_code_slices_gen.go +++ b/tg/tl_auth_cancel_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_check_password_gen.go b/tg/tl_auth_check_password_gen.go index d41cb37fc3..171ca9d094 100644 --- a/tg/tl_auth_check_password_gen.go +++ b/tg/tl_auth_check_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_check_password_slices_gen.go b/tg/tl_auth_check_password_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_check_password_slices_gen.go +++ b/tg/tl_auth_check_password_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_check_recovery_password_gen.go b/tg/tl_auth_check_recovery_password_gen.go index 3f025006d7..a166a8e516 100644 --- a/tg/tl_auth_check_recovery_password_gen.go +++ b/tg/tl_auth_check_recovery_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_check_recovery_password_slices_gen.go b/tg/tl_auth_check_recovery_password_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_check_recovery_password_slices_gen.go +++ b/tg/tl_auth_check_recovery_password_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_code_type_gen.go b/tg/tl_auth_code_type_gen.go index 3360636bd6..3165e5a4f5 100644 --- a/tg/tl_auth_code_type_gen.go +++ b/tg/tl_auth_code_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_code_type_slices_gen.go b/tg/tl_auth_code_type_slices_gen.go index e980efa59e..01f6bd890f 100644 --- a/tg/tl_auth_code_type_slices_gen.go +++ b/tg/tl_auth_code_type_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_drop_temp_auth_keys_gen.go b/tg/tl_auth_drop_temp_auth_keys_gen.go index 183d74d837..e1c8a45bd8 100644 --- a/tg/tl_auth_drop_temp_auth_keys_gen.go +++ b/tg/tl_auth_drop_temp_auth_keys_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_drop_temp_auth_keys_slices_gen.go b/tg/tl_auth_drop_temp_auth_keys_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_drop_temp_auth_keys_slices_gen.go +++ b/tg/tl_auth_drop_temp_auth_keys_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_export_authorization_gen.go b/tg/tl_auth_export_authorization_gen.go index 64a0bb1a3a..f60b0904e0 100644 --- a/tg/tl_auth_export_authorization_gen.go +++ b/tg/tl_auth_export_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_export_authorization_slices_gen.go b/tg/tl_auth_export_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_export_authorization_slices_gen.go +++ b/tg/tl_auth_export_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_export_login_token_gen.go b/tg/tl_auth_export_login_token_gen.go index 31430e9808..d1c2360a4c 100644 --- a/tg/tl_auth_export_login_token_gen.go +++ b/tg/tl_auth_export_login_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_export_login_token_slices_gen.go b/tg/tl_auth_export_login_token_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_export_login_token_slices_gen.go +++ b/tg/tl_auth_export_login_token_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_exported_authorization_gen.go b/tg/tl_auth_exported_authorization_gen.go index 416aa8ea24..ca3daa87f4 100644 --- a/tg/tl_auth_exported_authorization_gen.go +++ b/tg/tl_auth_exported_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_exported_authorization_slices_gen.go b/tg/tl_auth_exported_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_exported_authorization_slices_gen.go +++ b/tg/tl_auth_exported_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_import_authorization_gen.go b/tg/tl_auth_import_authorization_gen.go index b5861f8387..34097121b8 100644 --- a/tg/tl_auth_import_authorization_gen.go +++ b/tg/tl_auth_import_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_import_authorization_slices_gen.go b/tg/tl_auth_import_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_import_authorization_slices_gen.go +++ b/tg/tl_auth_import_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_import_bot_authorization_gen.go b/tg/tl_auth_import_bot_authorization_gen.go index d04ba3f1ef..539515829b 100644 --- a/tg/tl_auth_import_bot_authorization_gen.go +++ b/tg/tl_auth_import_bot_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_import_bot_authorization_slices_gen.go b/tg/tl_auth_import_bot_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_import_bot_authorization_slices_gen.go +++ b/tg/tl_auth_import_bot_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_import_login_token_gen.go b/tg/tl_auth_import_login_token_gen.go index ca286e646e..f2f0ab7782 100644 --- a/tg/tl_auth_import_login_token_gen.go +++ b/tg/tl_auth_import_login_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_import_login_token_slices_gen.go b/tg/tl_auth_import_login_token_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_import_login_token_slices_gen.go +++ b/tg/tl_auth_import_login_token_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_import_web_token_authorization_gen.go b/tg/tl_auth_import_web_token_authorization_gen.go index 9b2315cae2..9c38af5704 100644 --- a/tg/tl_auth_import_web_token_authorization_gen.go +++ b/tg/tl_auth_import_web_token_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_import_web_token_authorization_slices_gen.go b/tg/tl_auth_import_web_token_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_import_web_token_authorization_slices_gen.go +++ b/tg/tl_auth_import_web_token_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_log_out_gen.go b/tg/tl_auth_log_out_gen.go index 6c6f49a30a..1d59c83fdc 100644 --- a/tg/tl_auth_log_out_gen.go +++ b/tg/tl_auth_log_out_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_log_out_slices_gen.go b/tg/tl_auth_log_out_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_log_out_slices_gen.go +++ b/tg/tl_auth_log_out_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_logged_out_gen.go b/tg/tl_auth_logged_out_gen.go index 0bac7fb32d..6adec227f8 100644 --- a/tg/tl_auth_logged_out_gen.go +++ b/tg/tl_auth_logged_out_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_logged_out_slices_gen.go b/tg/tl_auth_logged_out_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_logged_out_slices_gen.go +++ b/tg/tl_auth_logged_out_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_login_token_gen.go b/tg/tl_auth_login_token_gen.go index 1d971ea8a5..e056d87c19 100644 --- a/tg/tl_auth_login_token_gen.go +++ b/tg/tl_auth_login_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_login_token_slices_gen.go b/tg/tl_auth_login_token_slices_gen.go index 1531499c22..042e394d4d 100644 --- a/tg/tl_auth_login_token_slices_gen.go +++ b/tg/tl_auth_login_token_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_password_recovery_gen.go b/tg/tl_auth_password_recovery_gen.go index 7405536202..4d924d9287 100644 --- a/tg/tl_auth_password_recovery_gen.go +++ b/tg/tl_auth_password_recovery_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_password_recovery_slices_gen.go b/tg/tl_auth_password_recovery_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_password_recovery_slices_gen.go +++ b/tg/tl_auth_password_recovery_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_recover_password_gen.go b/tg/tl_auth_recover_password_gen.go index b0f4dd08c8..f0aaf703a9 100644 --- a/tg/tl_auth_recover_password_gen.go +++ b/tg/tl_auth_recover_password_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_recover_password_slices_gen.go b/tg/tl_auth_recover_password_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_recover_password_slices_gen.go +++ b/tg/tl_auth_recover_password_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_report_missing_code_gen.go b/tg/tl_auth_report_missing_code_gen.go index 76d12d1209..3e24d5c5f8 100644 --- a/tg/tl_auth_report_missing_code_gen.go +++ b/tg/tl_auth_report_missing_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_report_missing_code_slices_gen.go b/tg/tl_auth_report_missing_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_report_missing_code_slices_gen.go +++ b/tg/tl_auth_report_missing_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_request_firebase_sms_gen.go b/tg/tl_auth_request_firebase_sms_gen.go index 62083d7fbb..deaaba9111 100644 --- a/tg/tl_auth_request_firebase_sms_gen.go +++ b/tg/tl_auth_request_firebase_sms_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_request_firebase_sms_slices_gen.go b/tg/tl_auth_request_firebase_sms_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_request_firebase_sms_slices_gen.go +++ b/tg/tl_auth_request_firebase_sms_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_request_password_recovery_gen.go b/tg/tl_auth_request_password_recovery_gen.go index ba42d68a16..3b5d5636e4 100644 --- a/tg/tl_auth_request_password_recovery_gen.go +++ b/tg/tl_auth_request_password_recovery_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_request_password_recovery_slices_gen.go b/tg/tl_auth_request_password_recovery_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_request_password_recovery_slices_gen.go +++ b/tg/tl_auth_request_password_recovery_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_resend_code_gen.go b/tg/tl_auth_resend_code_gen.go index 6f63dd9198..5555c11a93 100644 --- a/tg/tl_auth_resend_code_gen.go +++ b/tg/tl_auth_resend_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_resend_code_slices_gen.go b/tg/tl_auth_resend_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_resend_code_slices_gen.go +++ b/tg/tl_auth_resend_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_reset_authorizations_gen.go b/tg/tl_auth_reset_authorizations_gen.go index 915f548379..d6116103a2 100644 --- a/tg/tl_auth_reset_authorizations_gen.go +++ b/tg/tl_auth_reset_authorizations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_reset_authorizations_slices_gen.go b/tg/tl_auth_reset_authorizations_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_reset_authorizations_slices_gen.go +++ b/tg/tl_auth_reset_authorizations_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_reset_login_email_gen.go b/tg/tl_auth_reset_login_email_gen.go index b61a33aa3e..24fd8b2902 100644 --- a/tg/tl_auth_reset_login_email_gen.go +++ b/tg/tl_auth_reset_login_email_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_reset_login_email_slices_gen.go b/tg/tl_auth_reset_login_email_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_reset_login_email_slices_gen.go +++ b/tg/tl_auth_reset_login_email_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_send_code_gen.go b/tg/tl_auth_send_code_gen.go index 5e84423c7f..66b9986301 100644 --- a/tg/tl_auth_send_code_gen.go +++ b/tg/tl_auth_send_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_send_code_slices_gen.go b/tg/tl_auth_send_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_send_code_slices_gen.go +++ b/tg/tl_auth_send_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_sent_code_gen.go b/tg/tl_auth_sent_code_gen.go index 36601bc76b..868e7d899e 100644 --- a/tg/tl_auth_sent_code_gen.go +++ b/tg/tl_auth_sent_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_sent_code_slices_gen.go b/tg/tl_auth_sent_code_slices_gen.go index b6ff5f3a3b..fa8438ae3b 100644 --- a/tg/tl_auth_sent_code_slices_gen.go +++ b/tg/tl_auth_sent_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_sent_code_type_gen.go b/tg/tl_auth_sent_code_type_gen.go index ad9b6fa13a..e0465e0301 100644 --- a/tg/tl_auth_sent_code_type_gen.go +++ b/tg/tl_auth_sent_code_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_sent_code_type_slices_gen.go b/tg/tl_auth_sent_code_type_slices_gen.go index 0b7320987a..b06ed356a6 100644 --- a/tg/tl_auth_sent_code_type_slices_gen.go +++ b/tg/tl_auth_sent_code_type_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_sign_in_gen.go b/tg/tl_auth_sign_in_gen.go index c16945b309..da9124b953 100644 --- a/tg/tl_auth_sign_in_gen.go +++ b/tg/tl_auth_sign_in_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_sign_in_slices_gen.go b/tg/tl_auth_sign_in_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_sign_in_slices_gen.go +++ b/tg/tl_auth_sign_in_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_sign_up_gen.go b/tg/tl_auth_sign_up_gen.go index 1f8866d0be..33133a1910 100644 --- a/tg/tl_auth_sign_up_gen.go +++ b/tg/tl_auth_sign_up_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auth_sign_up_slices_gen.go b/tg/tl_auth_sign_up_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auth_sign_up_slices_gen.go +++ b/tg/tl_auth_sign_up_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_authorization_gen.go b/tg/tl_authorization_gen.go index e365533d55..af52053c7f 100644 --- a/tg/tl_authorization_gen.go +++ b/tg/tl_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_authorization_slices_gen.go b/tg/tl_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_authorization_slices_gen.go +++ b/tg/tl_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auto_download_settings_gen.go b/tg/tl_auto_download_settings_gen.go index 8f2a88959c..b1436e8737 100644 --- a/tg/tl_auto_download_settings_gen.go +++ b/tg/tl_auto_download_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auto_download_settings_slices_gen.go b/tg/tl_auto_download_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auto_download_settings_slices_gen.go +++ b/tg/tl_auto_download_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auto_save_exception_gen.go b/tg/tl_auto_save_exception_gen.go index 4c793a8147..2e0f428ccd 100644 --- a/tg/tl_auto_save_exception_gen.go +++ b/tg/tl_auto_save_exception_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auto_save_exception_slices_gen.go b/tg/tl_auto_save_exception_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auto_save_exception_slices_gen.go +++ b/tg/tl_auto_save_exception_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auto_save_settings_gen.go b/tg/tl_auto_save_settings_gen.go index 9d319db870..9fa6599fda 100644 --- a/tg/tl_auto_save_settings_gen.go +++ b/tg/tl_auto_save_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_auto_save_settings_slices_gen.go b/tg/tl_auto_save_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_auto_save_settings_slices_gen.go +++ b/tg/tl_auto_save_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_available_effect_gen.go b/tg/tl_available_effect_gen.go index a71b7f4c85..651f77f828 100644 --- a/tg/tl_available_effect_gen.go +++ b/tg/tl_available_effect_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_available_effect_slices_gen.go b/tg/tl_available_effect_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_available_effect_slices_gen.go +++ b/tg/tl_available_effect_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_available_reaction_gen.go b/tg/tl_available_reaction_gen.go index e5b30d922d..0f7bcf94a8 100644 --- a/tg/tl_available_reaction_gen.go +++ b/tg/tl_available_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_available_reaction_slices_gen.go b/tg/tl_available_reaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_available_reaction_slices_gen.go +++ b/tg/tl_available_reaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bank_card_open_url_gen.go b/tg/tl_bank_card_open_url_gen.go index 2c92532698..f17d0df105 100644 --- a/tg/tl_bank_card_open_url_gen.go +++ b/tg/tl_bank_card_open_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bank_card_open_url_slices_gen.go b/tg/tl_bank_card_open_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bank_card_open_url_slices_gen.go +++ b/tg/tl_bank_card_open_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_base_theme_gen.go b/tg/tl_base_theme_gen.go index 6e5967b2a2..63d6b46fec 100644 --- a/tg/tl_base_theme_gen.go +++ b/tg/tl_base_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_base_theme_slices_gen.go b/tg/tl_base_theme_slices_gen.go index 0367d5e796..6f5d3169dd 100644 --- a/tg/tl_base_theme_slices_gen.go +++ b/tg/tl_base_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_birthday_gen.go b/tg/tl_birthday_gen.go index 0d38e73a3f..af36f8f26f 100644 --- a/tg/tl_birthday_gen.go +++ b/tg/tl_birthday_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_birthday_slices_gen.go b/tg/tl_birthday_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_birthday_slices_gen.go +++ b/tg/tl_birthday_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bool_class_vector_gen.go b/tg/tl_bool_class_vector_gen.go index 4ccfb56118..42ae8c2ff0 100644 --- a/tg/tl_bool_class_vector_gen.go +++ b/tg/tl_bool_class_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bool_class_vector_slices_gen.go b/tg/tl_bool_class_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bool_class_vector_slices_gen.go +++ b/tg/tl_bool_class_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bool_gen.go b/tg/tl_bool_gen.go index b64ebfb829..47b9df7d16 100644 --- a/tg/tl_bool_gen.go +++ b/tg/tl_bool_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bool_slices_gen.go b/tg/tl_bool_slices_gen.go index 4754497828..70cf311cad 100644 --- a/tg/tl_bool_slices_gen.go +++ b/tg/tl_bool_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_boost_gen.go b/tg/tl_boost_gen.go index acf6b675c4..c55a5cb42e 100644 --- a/tg/tl_boost_gen.go +++ b/tg/tl_boost_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_boost_slices_gen.go b/tg/tl_boost_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_boost_slices_gen.go +++ b/tg/tl_boost_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_app_gen.go b/tg/tl_bot_app_gen.go index 8a1c6fbddb..ef83fca010 100644 --- a/tg/tl_bot_app_gen.go +++ b/tg/tl_bot_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_app_settings_gen.go b/tg/tl_bot_app_settings_gen.go index a103a08aa3..d62a3123e2 100644 --- a/tg/tl_bot_app_settings_gen.go +++ b/tg/tl_bot_app_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_app_settings_slices_gen.go b/tg/tl_bot_app_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bot_app_settings_slices_gen.go +++ b/tg/tl_bot_app_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_app_slices_gen.go b/tg/tl_bot_app_slices_gen.go index 69d3afb645..f4e426c5ed 100644 --- a/tg/tl_bot_app_slices_gen.go +++ b/tg/tl_bot_app_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_business_connection_gen.go b/tg/tl_bot_business_connection_gen.go index 3c774ef1b3..411a9d1763 100644 --- a/tg/tl_bot_business_connection_gen.go +++ b/tg/tl_bot_business_connection_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_business_connection_slices_gen.go b/tg/tl_bot_business_connection_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bot_business_connection_slices_gen.go +++ b/tg/tl_bot_business_connection_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_command_gen.go b/tg/tl_bot_command_gen.go index 85389980b6..7c929cdfd4 100644 --- a/tg/tl_bot_command_gen.go +++ b/tg/tl_bot_command_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_command_scope_gen.go b/tg/tl_bot_command_scope_gen.go index aaf5a0c1c1..41eeb16eef 100644 --- a/tg/tl_bot_command_scope_gen.go +++ b/tg/tl_bot_command_scope_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_command_scope_slices_gen.go b/tg/tl_bot_command_scope_slices_gen.go index d967e5c2fe..15ba778708 100644 --- a/tg/tl_bot_command_scope_slices_gen.go +++ b/tg/tl_bot_command_scope_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_command_slices_gen.go b/tg/tl_bot_command_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bot_command_slices_gen.go +++ b/tg/tl_bot_command_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_command_vector_gen.go b/tg/tl_bot_command_vector_gen.go index f2cea08286..891205c05b 100644 --- a/tg/tl_bot_command_vector_gen.go +++ b/tg/tl_bot_command_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_command_vector_slices_gen.go b/tg/tl_bot_command_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bot_command_vector_slices_gen.go +++ b/tg/tl_bot_command_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_info_gen.go b/tg/tl_bot_info_gen.go index 7a4a6378b6..8c233c7d22 100644 --- a/tg/tl_bot_info_gen.go +++ b/tg/tl_bot_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_info_slices_gen.go b/tg/tl_bot_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bot_info_slices_gen.go +++ b/tg/tl_bot_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_inline_message_gen.go b/tg/tl_bot_inline_message_gen.go index 2fefcaa0ed..95e8ffa8c5 100644 --- a/tg/tl_bot_inline_message_gen.go +++ b/tg/tl_bot_inline_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_inline_message_slices_gen.go b/tg/tl_bot_inline_message_slices_gen.go index e97b33021a..3cbe3ea00c 100644 --- a/tg/tl_bot_inline_message_slices_gen.go +++ b/tg/tl_bot_inline_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_inline_result_gen.go b/tg/tl_bot_inline_result_gen.go index be85be4ae4..9c423cbc93 100644 --- a/tg/tl_bot_inline_result_gen.go +++ b/tg/tl_bot_inline_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_inline_result_slices_gen.go b/tg/tl_bot_inline_result_slices_gen.go index c90a3d491e..dd770ee5e8 100644 --- a/tg/tl_bot_inline_result_slices_gen.go +++ b/tg/tl_bot_inline_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_menu_button_gen.go b/tg/tl_bot_menu_button_gen.go index ee66190106..f4c4a22f60 100644 --- a/tg/tl_bot_menu_button_gen.go +++ b/tg/tl_bot_menu_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_menu_button_slices_gen.go b/tg/tl_bot_menu_button_slices_gen.go index c79007f1f5..5ce4dcc5d4 100644 --- a/tg/tl_bot_menu_button_slices_gen.go +++ b/tg/tl_bot_menu_button_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_preview_media_gen.go b/tg/tl_bot_preview_media_gen.go index 3bcd09cfa5..bd68d0fb66 100644 --- a/tg/tl_bot_preview_media_gen.go +++ b/tg/tl_bot_preview_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_preview_media_slices_gen.go b/tg/tl_bot_preview_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bot_preview_media_slices_gen.go +++ b/tg/tl_bot_preview_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_preview_media_vector_gen.go b/tg/tl_bot_preview_media_vector_gen.go index 884d28ccaa..c90b9209ca 100644 --- a/tg/tl_bot_preview_media_vector_gen.go +++ b/tg/tl_bot_preview_media_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bot_preview_media_vector_slices_gen.go b/tg/tl_bot_preview_media_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bot_preview_media_vector_slices_gen.go +++ b/tg/tl_bot_preview_media_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_add_preview_media_gen.go b/tg/tl_bots_add_preview_media_gen.go index ee8e50c1eb..0e3547480c 100644 --- a/tg/tl_bots_add_preview_media_gen.go +++ b/tg/tl_bots_add_preview_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_add_preview_media_slices_gen.go b/tg/tl_bots_add_preview_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_add_preview_media_slices_gen.go +++ b/tg/tl_bots_add_preview_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_allow_send_message_gen.go b/tg/tl_bots_allow_send_message_gen.go index 087663b3d3..c1adff45e5 100644 --- a/tg/tl_bots_allow_send_message_gen.go +++ b/tg/tl_bots_allow_send_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_allow_send_message_slices_gen.go b/tg/tl_bots_allow_send_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_allow_send_message_slices_gen.go +++ b/tg/tl_bots_allow_send_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_answer_webhook_json_query_gen.go b/tg/tl_bots_answer_webhook_json_query_gen.go index 08ea73b26e..2f47e42703 100644 --- a/tg/tl_bots_answer_webhook_json_query_gen.go +++ b/tg/tl_bots_answer_webhook_json_query_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_answer_webhook_json_query_slices_gen.go b/tg/tl_bots_answer_webhook_json_query_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_answer_webhook_json_query_slices_gen.go +++ b/tg/tl_bots_answer_webhook_json_query_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_bot_info_gen.go b/tg/tl_bots_bot_info_gen.go index 298f70560c..583d51cd9e 100644 --- a/tg/tl_bots_bot_info_gen.go +++ b/tg/tl_bots_bot_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_bot_info_slices_gen.go b/tg/tl_bots_bot_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_bot_info_slices_gen.go +++ b/tg/tl_bots_bot_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_can_send_message_gen.go b/tg/tl_bots_can_send_message_gen.go index 62f49c9472..d9f524a2c4 100644 --- a/tg/tl_bots_can_send_message_gen.go +++ b/tg/tl_bots_can_send_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_can_send_message_slices_gen.go b/tg/tl_bots_can_send_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_can_send_message_slices_gen.go +++ b/tg/tl_bots_can_send_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_check_download_file_params_gen.go b/tg/tl_bots_check_download_file_params_gen.go index f101bbda2d..59615676a3 100644 --- a/tg/tl_bots_check_download_file_params_gen.go +++ b/tg/tl_bots_check_download_file_params_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_check_download_file_params_slices_gen.go b/tg/tl_bots_check_download_file_params_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_check_download_file_params_slices_gen.go +++ b/tg/tl_bots_check_download_file_params_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_delete_preview_media_gen.go b/tg/tl_bots_delete_preview_media_gen.go index e86c0791d3..ffc6d28c54 100644 --- a/tg/tl_bots_delete_preview_media_gen.go +++ b/tg/tl_bots_delete_preview_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_delete_preview_media_slices_gen.go b/tg/tl_bots_delete_preview_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_delete_preview_media_slices_gen.go +++ b/tg/tl_bots_delete_preview_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_edit_preview_media_gen.go b/tg/tl_bots_edit_preview_media_gen.go index aa00c0d956..901747f990 100644 --- a/tg/tl_bots_edit_preview_media_gen.go +++ b/tg/tl_bots_edit_preview_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_edit_preview_media_slices_gen.go b/tg/tl_bots_edit_preview_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_edit_preview_media_slices_gen.go +++ b/tg/tl_bots_edit_preview_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_bot_commands_gen.go b/tg/tl_bots_get_bot_commands_gen.go index c6064a615b..a88996f738 100644 --- a/tg/tl_bots_get_bot_commands_gen.go +++ b/tg/tl_bots_get_bot_commands_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_bot_commands_slices_gen.go b/tg/tl_bots_get_bot_commands_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_get_bot_commands_slices_gen.go +++ b/tg/tl_bots_get_bot_commands_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_bot_info_gen.go b/tg/tl_bots_get_bot_info_gen.go index bf848d61ce..1575761921 100644 --- a/tg/tl_bots_get_bot_info_gen.go +++ b/tg/tl_bots_get_bot_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_bot_info_slices_gen.go b/tg/tl_bots_get_bot_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_get_bot_info_slices_gen.go +++ b/tg/tl_bots_get_bot_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_bot_menu_button_gen.go b/tg/tl_bots_get_bot_menu_button_gen.go index 66be294d85..493517a0d2 100644 --- a/tg/tl_bots_get_bot_menu_button_gen.go +++ b/tg/tl_bots_get_bot_menu_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_bot_menu_button_slices_gen.go b/tg/tl_bots_get_bot_menu_button_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_get_bot_menu_button_slices_gen.go +++ b/tg/tl_bots_get_bot_menu_button_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_popular_app_bots_gen.go b/tg/tl_bots_get_popular_app_bots_gen.go index c8edfe7926..2c13c953b6 100644 --- a/tg/tl_bots_get_popular_app_bots_gen.go +++ b/tg/tl_bots_get_popular_app_bots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_popular_app_bots_slices_gen.go b/tg/tl_bots_get_popular_app_bots_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_get_popular_app_bots_slices_gen.go +++ b/tg/tl_bots_get_popular_app_bots_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_preview_info_gen.go b/tg/tl_bots_get_preview_info_gen.go index 0087c2e779..c005439279 100644 --- a/tg/tl_bots_get_preview_info_gen.go +++ b/tg/tl_bots_get_preview_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_preview_info_slices_gen.go b/tg/tl_bots_get_preview_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_get_preview_info_slices_gen.go +++ b/tg/tl_bots_get_preview_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_preview_medias_gen.go b/tg/tl_bots_get_preview_medias_gen.go index 2db81f3089..b434fcd372 100644 --- a/tg/tl_bots_get_preview_medias_gen.go +++ b/tg/tl_bots_get_preview_medias_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_get_preview_medias_slices_gen.go b/tg/tl_bots_get_preview_medias_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_get_preview_medias_slices_gen.go +++ b/tg/tl_bots_get_preview_medias_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_invoke_web_view_custom_method_gen.go b/tg/tl_bots_invoke_web_view_custom_method_gen.go index bf8d777a9c..2ce5b707d1 100644 --- a/tg/tl_bots_invoke_web_view_custom_method_gen.go +++ b/tg/tl_bots_invoke_web_view_custom_method_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_invoke_web_view_custom_method_slices_gen.go b/tg/tl_bots_invoke_web_view_custom_method_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_invoke_web_view_custom_method_slices_gen.go +++ b/tg/tl_bots_invoke_web_view_custom_method_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_popular_app_bots_gen.go b/tg/tl_bots_popular_app_bots_gen.go index 2b321886b1..2b8dc049e2 100644 --- a/tg/tl_bots_popular_app_bots_gen.go +++ b/tg/tl_bots_popular_app_bots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_popular_app_bots_slices_gen.go b/tg/tl_bots_popular_app_bots_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_popular_app_bots_slices_gen.go +++ b/tg/tl_bots_popular_app_bots_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_preview_info_gen.go b/tg/tl_bots_preview_info_gen.go index 8a2e382ff1..9884e3d95b 100644 --- a/tg/tl_bots_preview_info_gen.go +++ b/tg/tl_bots_preview_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_preview_info_slices_gen.go b/tg/tl_bots_preview_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_preview_info_slices_gen.go +++ b/tg/tl_bots_preview_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_reorder_preview_medias_gen.go b/tg/tl_bots_reorder_preview_medias_gen.go index 149f00b157..3aa022abb2 100644 --- a/tg/tl_bots_reorder_preview_medias_gen.go +++ b/tg/tl_bots_reorder_preview_medias_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_reorder_preview_medias_slices_gen.go b/tg/tl_bots_reorder_preview_medias_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_reorder_preview_medias_slices_gen.go +++ b/tg/tl_bots_reorder_preview_medias_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_reorder_usernames_gen.go b/tg/tl_bots_reorder_usernames_gen.go index 43b76ff005..22b237f3ce 100644 --- a/tg/tl_bots_reorder_usernames_gen.go +++ b/tg/tl_bots_reorder_usernames_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_reorder_usernames_slices_gen.go b/tg/tl_bots_reorder_usernames_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_reorder_usernames_slices_gen.go +++ b/tg/tl_bots_reorder_usernames_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_reset_bot_commands_gen.go b/tg/tl_bots_reset_bot_commands_gen.go index 07cec2fe59..3c01781dc3 100644 --- a/tg/tl_bots_reset_bot_commands_gen.go +++ b/tg/tl_bots_reset_bot_commands_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_reset_bot_commands_slices_gen.go b/tg/tl_bots_reset_bot_commands_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_reset_bot_commands_slices_gen.go +++ b/tg/tl_bots_reset_bot_commands_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_send_custom_request_gen.go b/tg/tl_bots_send_custom_request_gen.go index 55c78d04f1..22e1707213 100644 --- a/tg/tl_bots_send_custom_request_gen.go +++ b/tg/tl_bots_send_custom_request_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_send_custom_request_slices_gen.go b/tg/tl_bots_send_custom_request_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_send_custom_request_slices_gen.go +++ b/tg/tl_bots_send_custom_request_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_broadcast_default_admin_rights_gen.go b/tg/tl_bots_set_bot_broadcast_default_admin_rights_gen.go index 1dcf7a354f..c4434b3ff7 100644 --- a/tg/tl_bots_set_bot_broadcast_default_admin_rights_gen.go +++ b/tg/tl_bots_set_bot_broadcast_default_admin_rights_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_broadcast_default_admin_rights_slices_gen.go b/tg/tl_bots_set_bot_broadcast_default_admin_rights_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_set_bot_broadcast_default_admin_rights_slices_gen.go +++ b/tg/tl_bots_set_bot_broadcast_default_admin_rights_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_commands_gen.go b/tg/tl_bots_set_bot_commands_gen.go index e125cf0971..5b00c687f9 100644 --- a/tg/tl_bots_set_bot_commands_gen.go +++ b/tg/tl_bots_set_bot_commands_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_commands_slices_gen.go b/tg/tl_bots_set_bot_commands_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_set_bot_commands_slices_gen.go +++ b/tg/tl_bots_set_bot_commands_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_group_default_admin_rights_gen.go b/tg/tl_bots_set_bot_group_default_admin_rights_gen.go index 30a6f5d7a3..e386a15923 100644 --- a/tg/tl_bots_set_bot_group_default_admin_rights_gen.go +++ b/tg/tl_bots_set_bot_group_default_admin_rights_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_group_default_admin_rights_slices_gen.go b/tg/tl_bots_set_bot_group_default_admin_rights_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_set_bot_group_default_admin_rights_slices_gen.go +++ b/tg/tl_bots_set_bot_group_default_admin_rights_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_info_gen.go b/tg/tl_bots_set_bot_info_gen.go index cc0b467256..be7c7bf181 100644 --- a/tg/tl_bots_set_bot_info_gen.go +++ b/tg/tl_bots_set_bot_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_info_slices_gen.go b/tg/tl_bots_set_bot_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_set_bot_info_slices_gen.go +++ b/tg/tl_bots_set_bot_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_menu_button_gen.go b/tg/tl_bots_set_bot_menu_button_gen.go index 283e03483f..5deb2d0c01 100644 --- a/tg/tl_bots_set_bot_menu_button_gen.go +++ b/tg/tl_bots_set_bot_menu_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_set_bot_menu_button_slices_gen.go b/tg/tl_bots_set_bot_menu_button_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_set_bot_menu_button_slices_gen.go +++ b/tg/tl_bots_set_bot_menu_button_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_toggle_user_emoji_status_permission_gen.go b/tg/tl_bots_toggle_user_emoji_status_permission_gen.go index fab1081e0b..f7087a00ad 100644 --- a/tg/tl_bots_toggle_user_emoji_status_permission_gen.go +++ b/tg/tl_bots_toggle_user_emoji_status_permission_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_toggle_user_emoji_status_permission_slices_gen.go b/tg/tl_bots_toggle_user_emoji_status_permission_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_toggle_user_emoji_status_permission_slices_gen.go +++ b/tg/tl_bots_toggle_user_emoji_status_permission_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_toggle_username_gen.go b/tg/tl_bots_toggle_username_gen.go index 569bae3dd0..f44c789340 100644 --- a/tg/tl_bots_toggle_username_gen.go +++ b/tg/tl_bots_toggle_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_toggle_username_slices_gen.go b/tg/tl_bots_toggle_username_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_toggle_username_slices_gen.go +++ b/tg/tl_bots_toggle_username_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_update_user_emoji_status_gen.go b/tg/tl_bots_update_user_emoji_status_gen.go index 8169f1578d..f65138f738 100644 --- a/tg/tl_bots_update_user_emoji_status_gen.go +++ b/tg/tl_bots_update_user_emoji_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bots_update_user_emoji_status_slices_gen.go b/tg/tl_bots_update_user_emoji_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bots_update_user_emoji_status_slices_gen.go +++ b/tg/tl_bots_update_user_emoji_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_broadcast_revenue_balances_gen.go b/tg/tl_broadcast_revenue_balances_gen.go index f208572633..485dbfe75d 100644 --- a/tg/tl_broadcast_revenue_balances_gen.go +++ b/tg/tl_broadcast_revenue_balances_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_broadcast_revenue_balances_slices_gen.go b/tg/tl_broadcast_revenue_balances_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_broadcast_revenue_balances_slices_gen.go +++ b/tg/tl_broadcast_revenue_balances_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_broadcast_revenue_transaction_gen.go b/tg/tl_broadcast_revenue_transaction_gen.go index 5e5e054ff6..fa54a18138 100644 --- a/tg/tl_broadcast_revenue_transaction_gen.go +++ b/tg/tl_broadcast_revenue_transaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_broadcast_revenue_transaction_slices_gen.go b/tg/tl_broadcast_revenue_transaction_slices_gen.go index 8b01cea32c..8f2f44c4dc 100644 --- a/tg/tl_broadcast_revenue_transaction_slices_gen.go +++ b/tg/tl_broadcast_revenue_transaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_away_message_gen.go b/tg/tl_business_away_message_gen.go index 183b5c77d9..1f33a2245d 100644 --- a/tg/tl_business_away_message_gen.go +++ b/tg/tl_business_away_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_away_message_schedule_gen.go b/tg/tl_business_away_message_schedule_gen.go index ae514171fa..3882ee39f8 100644 --- a/tg/tl_business_away_message_schedule_gen.go +++ b/tg/tl_business_away_message_schedule_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_away_message_schedule_slices_gen.go b/tg/tl_business_away_message_schedule_slices_gen.go index 318a853c86..8b82f92517 100644 --- a/tg/tl_business_away_message_schedule_slices_gen.go +++ b/tg/tl_business_away_message_schedule_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_away_message_slices_gen.go b/tg/tl_business_away_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_business_away_message_slices_gen.go +++ b/tg/tl_business_away_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_bot_recipients_gen.go b/tg/tl_business_bot_recipients_gen.go index e4fa891752..e7230a1563 100644 --- a/tg/tl_business_bot_recipients_gen.go +++ b/tg/tl_business_bot_recipients_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_bot_recipients_slices_gen.go b/tg/tl_business_bot_recipients_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_business_bot_recipients_slices_gen.go +++ b/tg/tl_business_bot_recipients_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_chat_link_gen.go b/tg/tl_business_chat_link_gen.go index 07b60cb9d8..b900a9637a 100644 --- a/tg/tl_business_chat_link_gen.go +++ b/tg/tl_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_chat_link_slices_gen.go b/tg/tl_business_chat_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_business_chat_link_slices_gen.go +++ b/tg/tl_business_chat_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_greeting_message_gen.go b/tg/tl_business_greeting_message_gen.go index aa161b5ac9..ffb5ce2f62 100644 --- a/tg/tl_business_greeting_message_gen.go +++ b/tg/tl_business_greeting_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_greeting_message_slices_gen.go b/tg/tl_business_greeting_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_business_greeting_message_slices_gen.go +++ b/tg/tl_business_greeting_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_intro_gen.go b/tg/tl_business_intro_gen.go index fbf31da9e4..d310600f0f 100644 --- a/tg/tl_business_intro_gen.go +++ b/tg/tl_business_intro_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_intro_slices_gen.go b/tg/tl_business_intro_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_business_intro_slices_gen.go +++ b/tg/tl_business_intro_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_location_gen.go b/tg/tl_business_location_gen.go index fc039f7a10..33c62bf2d5 100644 --- a/tg/tl_business_location_gen.go +++ b/tg/tl_business_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_location_slices_gen.go b/tg/tl_business_location_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_business_location_slices_gen.go +++ b/tg/tl_business_location_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_recipients_gen.go b/tg/tl_business_recipients_gen.go index b213f513b1..8612c4ae53 100644 --- a/tg/tl_business_recipients_gen.go +++ b/tg/tl_business_recipients_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_recipients_slices_gen.go b/tg/tl_business_recipients_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_business_recipients_slices_gen.go +++ b/tg/tl_business_recipients_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_weekly_open_gen.go b/tg/tl_business_weekly_open_gen.go index a7269043e1..4211f512b1 100644 --- a/tg/tl_business_weekly_open_gen.go +++ b/tg/tl_business_weekly_open_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_weekly_open_slices_gen.go b/tg/tl_business_weekly_open_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_business_weekly_open_slices_gen.go +++ b/tg/tl_business_weekly_open_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_work_hours_gen.go b/tg/tl_business_work_hours_gen.go index b994094ef0..bca7f84214 100644 --- a/tg/tl_business_work_hours_gen.go +++ b/tg/tl_business_work_hours_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_business_work_hours_slices_gen.go b/tg/tl_business_work_hours_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_business_work_hours_slices_gen.go +++ b/tg/tl_business_work_hours_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bytes_gen.go b/tg/tl_bytes_gen.go index 1d644aeed1..8fb956adc7 100644 --- a/tg/tl_bytes_gen.go +++ b/tg/tl_bytes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_bytes_slices_gen.go b/tg/tl_bytes_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_bytes_slices_gen.go +++ b/tg/tl_bytes_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_cdn_config_gen.go b/tg/tl_cdn_config_gen.go index 1d27318b3a..ab82b81d85 100644 --- a/tg/tl_cdn_config_gen.go +++ b/tg/tl_cdn_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_cdn_config_slices_gen.go b/tg/tl_cdn_config_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_cdn_config_slices_gen.go +++ b/tg/tl_cdn_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_cdn_public_key_gen.go b/tg/tl_cdn_public_key_gen.go index ba33806c59..ad37887b0f 100644 --- a/tg/tl_cdn_public_key_gen.go +++ b/tg/tl_cdn_public_key_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_cdn_public_key_slices_gen.go b/tg/tl_cdn_public_key_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_cdn_public_key_slices_gen.go +++ b/tg/tl_cdn_public_key_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_admin_log_event_action_gen.go b/tg/tl_channel_admin_log_event_action_gen.go index f986852a27..f721219144 100644 --- a/tg/tl_channel_admin_log_event_action_gen.go +++ b/tg/tl_channel_admin_log_event_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_admin_log_event_action_slices_gen.go b/tg/tl_channel_admin_log_event_action_slices_gen.go index eb08c33574..d025081b1a 100644 --- a/tg/tl_channel_admin_log_event_action_slices_gen.go +++ b/tg/tl_channel_admin_log_event_action_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_admin_log_event_gen.go b/tg/tl_channel_admin_log_event_gen.go index 4d8fa67fc8..d242b83e9a 100644 --- a/tg/tl_channel_admin_log_event_gen.go +++ b/tg/tl_channel_admin_log_event_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_admin_log_event_slices_gen.go b/tg/tl_channel_admin_log_event_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channel_admin_log_event_slices_gen.go +++ b/tg/tl_channel_admin_log_event_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_admin_log_events_filter_gen.go b/tg/tl_channel_admin_log_events_filter_gen.go index 26cae0dda7..47d873e051 100644 --- a/tg/tl_channel_admin_log_events_filter_gen.go +++ b/tg/tl_channel_admin_log_events_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_admin_log_events_filter_slices_gen.go b/tg/tl_channel_admin_log_events_filter_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channel_admin_log_events_filter_slices_gen.go +++ b/tg/tl_channel_admin_log_events_filter_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_location_gen.go b/tg/tl_channel_location_gen.go index 1f29bdc2a2..b1a076faee 100644 --- a/tg/tl_channel_location_gen.go +++ b/tg/tl_channel_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_location_slices_gen.go b/tg/tl_channel_location_slices_gen.go index 238977dddb..fa6ca051c8 100644 --- a/tg/tl_channel_location_slices_gen.go +++ b/tg/tl_channel_location_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_messages_filter_gen.go b/tg/tl_channel_messages_filter_gen.go index f33203e48c..0bd8e9cea9 100644 --- a/tg/tl_channel_messages_filter_gen.go +++ b/tg/tl_channel_messages_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_messages_filter_slices_gen.go b/tg/tl_channel_messages_filter_slices_gen.go index 1b834a8c3f..ff647ede27 100644 --- a/tg/tl_channel_messages_filter_slices_gen.go +++ b/tg/tl_channel_messages_filter_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_participant_gen.go b/tg/tl_channel_participant_gen.go index d3829dbee2..9c48995f0b 100644 --- a/tg/tl_channel_participant_gen.go +++ b/tg/tl_channel_participant_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_participant_slices_gen.go b/tg/tl_channel_participant_slices_gen.go index 699e85b4ee..3e2779dc10 100644 --- a/tg/tl_channel_participant_slices_gen.go +++ b/tg/tl_channel_participant_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_participants_filter_gen.go b/tg/tl_channel_participants_filter_gen.go index 6d67bcdfd7..51265e87d2 100644 --- a/tg/tl_channel_participants_filter_gen.go +++ b/tg/tl_channel_participants_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channel_participants_filter_slices_gen.go b/tg/tl_channel_participants_filter_slices_gen.go index 3a2508b512..479099a676 100644 --- a/tg/tl_channel_participants_filter_slices_gen.go +++ b/tg/tl_channel_participants_filter_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_admin_log_results_gen.go b/tg/tl_channels_admin_log_results_gen.go index 8cd93f1f6f..7f18dfe6c6 100644 --- a/tg/tl_channels_admin_log_results_gen.go +++ b/tg/tl_channels_admin_log_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_admin_log_results_slices_gen.go b/tg/tl_channels_admin_log_results_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_admin_log_results_slices_gen.go +++ b/tg/tl_channels_admin_log_results_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_channel_participant_gen.go b/tg/tl_channels_channel_participant_gen.go index 35aa145d8a..2a23aeda09 100644 --- a/tg/tl_channels_channel_participant_gen.go +++ b/tg/tl_channels_channel_participant_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_channel_participant_slices_gen.go b/tg/tl_channels_channel_participant_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_channel_participant_slices_gen.go +++ b/tg/tl_channels_channel_participant_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_channel_participants_gen.go b/tg/tl_channels_channel_participants_gen.go index 63bc7dd84e..cee69229ca 100644 --- a/tg/tl_channels_channel_participants_gen.go +++ b/tg/tl_channels_channel_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_channel_participants_slices_gen.go b/tg/tl_channels_channel_participants_slices_gen.go index ae91e8d9c3..44e9bbdcc3 100644 --- a/tg/tl_channels_channel_participants_slices_gen.go +++ b/tg/tl_channels_channel_participants_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_check_username_gen.go b/tg/tl_channels_check_username_gen.go index d0dcdf2f66..7feb3b2187 100644 --- a/tg/tl_channels_check_username_gen.go +++ b/tg/tl_channels_check_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_check_username_slices_gen.go b/tg/tl_channels_check_username_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_check_username_slices_gen.go +++ b/tg/tl_channels_check_username_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_convert_to_gigagroup_gen.go b/tg/tl_channels_convert_to_gigagroup_gen.go index c6afc518b1..8915012dcf 100644 --- a/tg/tl_channels_convert_to_gigagroup_gen.go +++ b/tg/tl_channels_convert_to_gigagroup_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_convert_to_gigagroup_slices_gen.go b/tg/tl_channels_convert_to_gigagroup_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_convert_to_gigagroup_slices_gen.go +++ b/tg/tl_channels_convert_to_gigagroup_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_create_channel_gen.go b/tg/tl_channels_create_channel_gen.go index 55a8246b50..5b97bc1692 100644 --- a/tg/tl_channels_create_channel_gen.go +++ b/tg/tl_channels_create_channel_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_create_channel_slices_gen.go b/tg/tl_channels_create_channel_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_create_channel_slices_gen.go +++ b/tg/tl_channels_create_channel_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_create_forum_topic_gen.go b/tg/tl_channels_create_forum_topic_gen.go index 1ee926212d..53a459a8c5 100644 --- a/tg/tl_channels_create_forum_topic_gen.go +++ b/tg/tl_channels_create_forum_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_create_forum_topic_slices_gen.go b/tg/tl_channels_create_forum_topic_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_create_forum_topic_slices_gen.go +++ b/tg/tl_channels_create_forum_topic_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_deactivate_all_usernames_gen.go b/tg/tl_channels_deactivate_all_usernames_gen.go index 4553296ed6..29ce2f3332 100644 --- a/tg/tl_channels_deactivate_all_usernames_gen.go +++ b/tg/tl_channels_deactivate_all_usernames_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_deactivate_all_usernames_slices_gen.go b/tg/tl_channels_deactivate_all_usernames_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_deactivate_all_usernames_slices_gen.go +++ b/tg/tl_channels_deactivate_all_usernames_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_channel_gen.go b/tg/tl_channels_delete_channel_gen.go index d32e9a4139..ffb28e3c78 100644 --- a/tg/tl_channels_delete_channel_gen.go +++ b/tg/tl_channels_delete_channel_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_channel_slices_gen.go b/tg/tl_channels_delete_channel_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_delete_channel_slices_gen.go +++ b/tg/tl_channels_delete_channel_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_history_gen.go b/tg/tl_channels_delete_history_gen.go index 9fc7441e16..6b1d8484b5 100644 --- a/tg/tl_channels_delete_history_gen.go +++ b/tg/tl_channels_delete_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_history_slices_gen.go b/tg/tl_channels_delete_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_delete_history_slices_gen.go +++ b/tg/tl_channels_delete_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_messages_gen.go b/tg/tl_channels_delete_messages_gen.go index ce4f1411cc..7da99b0eb1 100644 --- a/tg/tl_channels_delete_messages_gen.go +++ b/tg/tl_channels_delete_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_messages_slices_gen.go b/tg/tl_channels_delete_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_delete_messages_slices_gen.go +++ b/tg/tl_channels_delete_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_participant_history_gen.go b/tg/tl_channels_delete_participant_history_gen.go index d1d2a7a617..c864e6dd40 100644 --- a/tg/tl_channels_delete_participant_history_gen.go +++ b/tg/tl_channels_delete_participant_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_participant_history_slices_gen.go b/tg/tl_channels_delete_participant_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_delete_participant_history_slices_gen.go +++ b/tg/tl_channels_delete_participant_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_topic_history_gen.go b/tg/tl_channels_delete_topic_history_gen.go index 2f3326912a..e7364a47ed 100644 --- a/tg/tl_channels_delete_topic_history_gen.go +++ b/tg/tl_channels_delete_topic_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_delete_topic_history_slices_gen.go b/tg/tl_channels_delete_topic_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_delete_topic_history_slices_gen.go +++ b/tg/tl_channels_delete_topic_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_admin_gen.go b/tg/tl_channels_edit_admin_gen.go index 23d957cd3e..a3f33da752 100644 --- a/tg/tl_channels_edit_admin_gen.go +++ b/tg/tl_channels_edit_admin_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_admin_slices_gen.go b/tg/tl_channels_edit_admin_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_edit_admin_slices_gen.go +++ b/tg/tl_channels_edit_admin_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_banned_gen.go b/tg/tl_channels_edit_banned_gen.go index d03d4422fe..0f3c15837c 100644 --- a/tg/tl_channels_edit_banned_gen.go +++ b/tg/tl_channels_edit_banned_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_banned_slices_gen.go b/tg/tl_channels_edit_banned_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_edit_banned_slices_gen.go +++ b/tg/tl_channels_edit_banned_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_creator_gen.go b/tg/tl_channels_edit_creator_gen.go index ad7c189746..9257ee5131 100644 --- a/tg/tl_channels_edit_creator_gen.go +++ b/tg/tl_channels_edit_creator_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_creator_slices_gen.go b/tg/tl_channels_edit_creator_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_edit_creator_slices_gen.go +++ b/tg/tl_channels_edit_creator_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_forum_topic_gen.go b/tg/tl_channels_edit_forum_topic_gen.go index 3feccd4e49..1240e910ec 100644 --- a/tg/tl_channels_edit_forum_topic_gen.go +++ b/tg/tl_channels_edit_forum_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_forum_topic_slices_gen.go b/tg/tl_channels_edit_forum_topic_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_edit_forum_topic_slices_gen.go +++ b/tg/tl_channels_edit_forum_topic_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_location_gen.go b/tg/tl_channels_edit_location_gen.go index 948ac63b01..fe726291a5 100644 --- a/tg/tl_channels_edit_location_gen.go +++ b/tg/tl_channels_edit_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_location_slices_gen.go b/tg/tl_channels_edit_location_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_edit_location_slices_gen.go +++ b/tg/tl_channels_edit_location_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_photo_gen.go b/tg/tl_channels_edit_photo_gen.go index bd79eab09a..43d55404ad 100644 --- a/tg/tl_channels_edit_photo_gen.go +++ b/tg/tl_channels_edit_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_photo_slices_gen.go b/tg/tl_channels_edit_photo_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_edit_photo_slices_gen.go +++ b/tg/tl_channels_edit_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_title_gen.go b/tg/tl_channels_edit_title_gen.go index a1eea1602f..e50e46a90e 100644 --- a/tg/tl_channels_edit_title_gen.go +++ b/tg/tl_channels_edit_title_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_edit_title_slices_gen.go b/tg/tl_channels_edit_title_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_edit_title_slices_gen.go +++ b/tg/tl_channels_edit_title_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_export_message_link_gen.go b/tg/tl_channels_export_message_link_gen.go index d8274fb561..2b3d2a7cc5 100644 --- a/tg/tl_channels_export_message_link_gen.go +++ b/tg/tl_channels_export_message_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_export_message_link_slices_gen.go b/tg/tl_channels_export_message_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_export_message_link_slices_gen.go +++ b/tg/tl_channels_export_message_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_admin_log_gen.go b/tg/tl_channels_get_admin_log_gen.go index 2f0c413b9b..c3dc8d6831 100644 --- a/tg/tl_channels_get_admin_log_gen.go +++ b/tg/tl_channels_get_admin_log_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_admin_log_slices_gen.go b/tg/tl_channels_get_admin_log_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_admin_log_slices_gen.go +++ b/tg/tl_channels_get_admin_log_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_admined_public_channels_gen.go b/tg/tl_channels_get_admined_public_channels_gen.go index e82e732104..ffb64db412 100644 --- a/tg/tl_channels_get_admined_public_channels_gen.go +++ b/tg/tl_channels_get_admined_public_channels_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_admined_public_channels_slices_gen.go b/tg/tl_channels_get_admined_public_channels_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_admined_public_channels_slices_gen.go +++ b/tg/tl_channels_get_admined_public_channels_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_channel_recommendations_gen.go b/tg/tl_channels_get_channel_recommendations_gen.go index c0986d5b6d..6f1d739673 100644 --- a/tg/tl_channels_get_channel_recommendations_gen.go +++ b/tg/tl_channels_get_channel_recommendations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_channel_recommendations_slices_gen.go b/tg/tl_channels_get_channel_recommendations_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_channel_recommendations_slices_gen.go +++ b/tg/tl_channels_get_channel_recommendations_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_channels_gen.go b/tg/tl_channels_get_channels_gen.go index 7139b750d2..5f9c11e306 100644 --- a/tg/tl_channels_get_channels_gen.go +++ b/tg/tl_channels_get_channels_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_channels_slices_gen.go b/tg/tl_channels_get_channels_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_channels_slices_gen.go +++ b/tg/tl_channels_get_channels_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_forum_topics_by_id_gen.go b/tg/tl_channels_get_forum_topics_by_id_gen.go index e066da5ad8..aa9c85e2a3 100644 --- a/tg/tl_channels_get_forum_topics_by_id_gen.go +++ b/tg/tl_channels_get_forum_topics_by_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_forum_topics_by_id_slices_gen.go b/tg/tl_channels_get_forum_topics_by_id_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_forum_topics_by_id_slices_gen.go +++ b/tg/tl_channels_get_forum_topics_by_id_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_forum_topics_gen.go b/tg/tl_channels_get_forum_topics_gen.go index 47c5de56c1..f466c2fea9 100644 --- a/tg/tl_channels_get_forum_topics_gen.go +++ b/tg/tl_channels_get_forum_topics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_forum_topics_slices_gen.go b/tg/tl_channels_get_forum_topics_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_forum_topics_slices_gen.go +++ b/tg/tl_channels_get_forum_topics_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_full_channel_gen.go b/tg/tl_channels_get_full_channel_gen.go index 2d5790a1e1..b9dad49eb2 100644 --- a/tg/tl_channels_get_full_channel_gen.go +++ b/tg/tl_channels_get_full_channel_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_full_channel_slices_gen.go b/tg/tl_channels_get_full_channel_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_full_channel_slices_gen.go +++ b/tg/tl_channels_get_full_channel_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_groups_for_discussion_gen.go b/tg/tl_channels_get_groups_for_discussion_gen.go index 8ec355ca52..0b0d6b413e 100644 --- a/tg/tl_channels_get_groups_for_discussion_gen.go +++ b/tg/tl_channels_get_groups_for_discussion_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_groups_for_discussion_slices_gen.go b/tg/tl_channels_get_groups_for_discussion_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_groups_for_discussion_slices_gen.go +++ b/tg/tl_channels_get_groups_for_discussion_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_inactive_channels_gen.go b/tg/tl_channels_get_inactive_channels_gen.go index a20140a977..e4ebba061d 100644 --- a/tg/tl_channels_get_inactive_channels_gen.go +++ b/tg/tl_channels_get_inactive_channels_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_inactive_channels_slices_gen.go b/tg/tl_channels_get_inactive_channels_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_inactive_channels_slices_gen.go +++ b/tg/tl_channels_get_inactive_channels_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_left_channels_gen.go b/tg/tl_channels_get_left_channels_gen.go index 5cdc1359f4..b16dc1496d 100644 --- a/tg/tl_channels_get_left_channels_gen.go +++ b/tg/tl_channels_get_left_channels_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_left_channels_slices_gen.go b/tg/tl_channels_get_left_channels_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_left_channels_slices_gen.go +++ b/tg/tl_channels_get_left_channels_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_messages_gen.go b/tg/tl_channels_get_messages_gen.go index dc5d8845e1..cf64359ad9 100644 --- a/tg/tl_channels_get_messages_gen.go +++ b/tg/tl_channels_get_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_messages_slices_gen.go b/tg/tl_channels_get_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_messages_slices_gen.go +++ b/tg/tl_channels_get_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_participant_gen.go b/tg/tl_channels_get_participant_gen.go index 2c37bce1a8..7c0c836e81 100644 --- a/tg/tl_channels_get_participant_gen.go +++ b/tg/tl_channels_get_participant_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_participant_slices_gen.go b/tg/tl_channels_get_participant_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_participant_slices_gen.go +++ b/tg/tl_channels_get_participant_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_participants_gen.go b/tg/tl_channels_get_participants_gen.go index 249bb72650..aceb745771 100644 --- a/tg/tl_channels_get_participants_gen.go +++ b/tg/tl_channels_get_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_participants_slices_gen.go b/tg/tl_channels_get_participants_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_participants_slices_gen.go +++ b/tg/tl_channels_get_participants_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_send_as_gen.go b/tg/tl_channels_get_send_as_gen.go index f19eaf97c3..ae29a50d96 100644 --- a/tg/tl_channels_get_send_as_gen.go +++ b/tg/tl_channels_get_send_as_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_get_send_as_slices_gen.go b/tg/tl_channels_get_send_as_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_get_send_as_slices_gen.go +++ b/tg/tl_channels_get_send_as_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_invite_to_channel_gen.go b/tg/tl_channels_invite_to_channel_gen.go index 17b3702e8a..3026a9dced 100644 --- a/tg/tl_channels_invite_to_channel_gen.go +++ b/tg/tl_channels_invite_to_channel_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_invite_to_channel_slices_gen.go b/tg/tl_channels_invite_to_channel_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_invite_to_channel_slices_gen.go +++ b/tg/tl_channels_invite_to_channel_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_join_channel_gen.go b/tg/tl_channels_join_channel_gen.go index e0f08bc098..aabfb97ea9 100644 --- a/tg/tl_channels_join_channel_gen.go +++ b/tg/tl_channels_join_channel_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_join_channel_slices_gen.go b/tg/tl_channels_join_channel_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_join_channel_slices_gen.go +++ b/tg/tl_channels_join_channel_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_leave_channel_gen.go b/tg/tl_channels_leave_channel_gen.go index ccd05df15d..4aaa18a1a5 100644 --- a/tg/tl_channels_leave_channel_gen.go +++ b/tg/tl_channels_leave_channel_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_leave_channel_slices_gen.go b/tg/tl_channels_leave_channel_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_leave_channel_slices_gen.go +++ b/tg/tl_channels_leave_channel_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_read_history_gen.go b/tg/tl_channels_read_history_gen.go index 9bb4551ebc..f04c567c1b 100644 --- a/tg/tl_channels_read_history_gen.go +++ b/tg/tl_channels_read_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_read_history_slices_gen.go b/tg/tl_channels_read_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_read_history_slices_gen.go +++ b/tg/tl_channels_read_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_read_message_contents_gen.go b/tg/tl_channels_read_message_contents_gen.go index f512b9b364..8ce33626cf 100644 --- a/tg/tl_channels_read_message_contents_gen.go +++ b/tg/tl_channels_read_message_contents_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_read_message_contents_slices_gen.go b/tg/tl_channels_read_message_contents_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_read_message_contents_slices_gen.go +++ b/tg/tl_channels_read_message_contents_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_reorder_pinned_forum_topics_gen.go b/tg/tl_channels_reorder_pinned_forum_topics_gen.go index 830c5ec91c..beca6199ef 100644 --- a/tg/tl_channels_reorder_pinned_forum_topics_gen.go +++ b/tg/tl_channels_reorder_pinned_forum_topics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_reorder_pinned_forum_topics_slices_gen.go b/tg/tl_channels_reorder_pinned_forum_topics_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_reorder_pinned_forum_topics_slices_gen.go +++ b/tg/tl_channels_reorder_pinned_forum_topics_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_reorder_usernames_gen.go b/tg/tl_channels_reorder_usernames_gen.go index 473823dfb4..6a292df87b 100644 --- a/tg/tl_channels_reorder_usernames_gen.go +++ b/tg/tl_channels_reorder_usernames_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_reorder_usernames_slices_gen.go b/tg/tl_channels_reorder_usernames_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_reorder_usernames_slices_gen.go +++ b/tg/tl_channels_reorder_usernames_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_report_anti_spam_false_positive_gen.go b/tg/tl_channels_report_anti_spam_false_positive_gen.go index e0f593e4eb..002e866170 100644 --- a/tg/tl_channels_report_anti_spam_false_positive_gen.go +++ b/tg/tl_channels_report_anti_spam_false_positive_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_report_anti_spam_false_positive_slices_gen.go b/tg/tl_channels_report_anti_spam_false_positive_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_report_anti_spam_false_positive_slices_gen.go +++ b/tg/tl_channels_report_anti_spam_false_positive_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_report_spam_gen.go b/tg/tl_channels_report_spam_gen.go index d2883f65c2..47dc172640 100644 --- a/tg/tl_channels_report_spam_gen.go +++ b/tg/tl_channels_report_spam_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_report_spam_slices_gen.go b/tg/tl_channels_report_spam_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_report_spam_slices_gen.go +++ b/tg/tl_channels_report_spam_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_restrict_sponsored_messages_gen.go b/tg/tl_channels_restrict_sponsored_messages_gen.go index de9aac5b37..d5958d2518 100644 --- a/tg/tl_channels_restrict_sponsored_messages_gen.go +++ b/tg/tl_channels_restrict_sponsored_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_restrict_sponsored_messages_slices_gen.go b/tg/tl_channels_restrict_sponsored_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_restrict_sponsored_messages_slices_gen.go +++ b/tg/tl_channels_restrict_sponsored_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_search_posts_gen.go b/tg/tl_channels_search_posts_gen.go index ad31130c66..9b59e6bd82 100644 --- a/tg/tl_channels_search_posts_gen.go +++ b/tg/tl_channels_search_posts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_search_posts_slices_gen.go b/tg/tl_channels_search_posts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_search_posts_slices_gen.go +++ b/tg/tl_channels_search_posts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_send_as_peers_gen.go b/tg/tl_channels_send_as_peers_gen.go index dc8afd2832..d1ff9d0195 100644 --- a/tg/tl_channels_send_as_peers_gen.go +++ b/tg/tl_channels_send_as_peers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_send_as_peers_slices_gen.go b/tg/tl_channels_send_as_peers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_send_as_peers_slices_gen.go +++ b/tg/tl_channels_send_as_peers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_set_boosts_to_unblock_restrictions_gen.go b/tg/tl_channels_set_boosts_to_unblock_restrictions_gen.go index cfc28b7b5b..a2f8ecb7ab 100644 --- a/tg/tl_channels_set_boosts_to_unblock_restrictions_gen.go +++ b/tg/tl_channels_set_boosts_to_unblock_restrictions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_set_boosts_to_unblock_restrictions_slices_gen.go b/tg/tl_channels_set_boosts_to_unblock_restrictions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_set_boosts_to_unblock_restrictions_slices_gen.go +++ b/tg/tl_channels_set_boosts_to_unblock_restrictions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_set_discussion_group_gen.go b/tg/tl_channels_set_discussion_group_gen.go index b259496e68..b5e1e4ff62 100644 --- a/tg/tl_channels_set_discussion_group_gen.go +++ b/tg/tl_channels_set_discussion_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_set_discussion_group_slices_gen.go b/tg/tl_channels_set_discussion_group_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_set_discussion_group_slices_gen.go +++ b/tg/tl_channels_set_discussion_group_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_set_emoji_stickers_gen.go b/tg/tl_channels_set_emoji_stickers_gen.go index ac6f019b8f..615cf62005 100644 --- a/tg/tl_channels_set_emoji_stickers_gen.go +++ b/tg/tl_channels_set_emoji_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_set_emoji_stickers_slices_gen.go b/tg/tl_channels_set_emoji_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_set_emoji_stickers_slices_gen.go +++ b/tg/tl_channels_set_emoji_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_set_stickers_gen.go b/tg/tl_channels_set_stickers_gen.go index 03ee4900aa..ae34fea5e1 100644 --- a/tg/tl_channels_set_stickers_gen.go +++ b/tg/tl_channels_set_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_set_stickers_slices_gen.go b/tg/tl_channels_set_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_set_stickers_slices_gen.go +++ b/tg/tl_channels_set_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_sponsored_message_report_result_gen.go b/tg/tl_channels_sponsored_message_report_result_gen.go index 74ffa14249..d3d07f8456 100644 --- a/tg/tl_channels_sponsored_message_report_result_gen.go +++ b/tg/tl_channels_sponsored_message_report_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_sponsored_message_report_result_slices_gen.go b/tg/tl_channels_sponsored_message_report_result_slices_gen.go index 42e9d97b01..d49c1bd368 100644 --- a/tg/tl_channels_sponsored_message_report_result_slices_gen.go +++ b/tg/tl_channels_sponsored_message_report_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_anti_spam_gen.go b/tg/tl_channels_toggle_anti_spam_gen.go index c6434d0838..2db89db009 100644 --- a/tg/tl_channels_toggle_anti_spam_gen.go +++ b/tg/tl_channels_toggle_anti_spam_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_anti_spam_slices_gen.go b/tg/tl_channels_toggle_anti_spam_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_anti_spam_slices_gen.go +++ b/tg/tl_channels_toggle_anti_spam_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_forum_gen.go b/tg/tl_channels_toggle_forum_gen.go index 612bc14cb4..8503181939 100644 --- a/tg/tl_channels_toggle_forum_gen.go +++ b/tg/tl_channels_toggle_forum_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_forum_slices_gen.go b/tg/tl_channels_toggle_forum_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_forum_slices_gen.go +++ b/tg/tl_channels_toggle_forum_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_join_request_gen.go b/tg/tl_channels_toggle_join_request_gen.go index a8a6f9be88..e077a72dbb 100644 --- a/tg/tl_channels_toggle_join_request_gen.go +++ b/tg/tl_channels_toggle_join_request_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_join_request_slices_gen.go b/tg/tl_channels_toggle_join_request_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_join_request_slices_gen.go +++ b/tg/tl_channels_toggle_join_request_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_join_to_send_gen.go b/tg/tl_channels_toggle_join_to_send_gen.go index faf9335aaf..612cc7e67f 100644 --- a/tg/tl_channels_toggle_join_to_send_gen.go +++ b/tg/tl_channels_toggle_join_to_send_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_join_to_send_slices_gen.go b/tg/tl_channels_toggle_join_to_send_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_join_to_send_slices_gen.go +++ b/tg/tl_channels_toggle_join_to_send_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_participants_hidden_gen.go b/tg/tl_channels_toggle_participants_hidden_gen.go index 9175bf61e2..5a8176ceaa 100644 --- a/tg/tl_channels_toggle_participants_hidden_gen.go +++ b/tg/tl_channels_toggle_participants_hidden_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_participants_hidden_slices_gen.go b/tg/tl_channels_toggle_participants_hidden_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_participants_hidden_slices_gen.go +++ b/tg/tl_channels_toggle_participants_hidden_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_pre_history_hidden_gen.go b/tg/tl_channels_toggle_pre_history_hidden_gen.go index d7bdfa4f4b..dba90f31d7 100644 --- a/tg/tl_channels_toggle_pre_history_hidden_gen.go +++ b/tg/tl_channels_toggle_pre_history_hidden_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_pre_history_hidden_slices_gen.go b/tg/tl_channels_toggle_pre_history_hidden_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_pre_history_hidden_slices_gen.go +++ b/tg/tl_channels_toggle_pre_history_hidden_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_signatures_gen.go b/tg/tl_channels_toggle_signatures_gen.go index a5870c5647..98728af052 100644 --- a/tg/tl_channels_toggle_signatures_gen.go +++ b/tg/tl_channels_toggle_signatures_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_signatures_slices_gen.go b/tg/tl_channels_toggle_signatures_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_signatures_slices_gen.go +++ b/tg/tl_channels_toggle_signatures_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_slow_mode_gen.go b/tg/tl_channels_toggle_slow_mode_gen.go index 0b789d2047..ef04f4e490 100644 --- a/tg/tl_channels_toggle_slow_mode_gen.go +++ b/tg/tl_channels_toggle_slow_mode_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_slow_mode_slices_gen.go b/tg/tl_channels_toggle_slow_mode_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_slow_mode_slices_gen.go +++ b/tg/tl_channels_toggle_slow_mode_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_username_gen.go b/tg/tl_channels_toggle_username_gen.go index b43bb39dc4..c3e4bf7d5a 100644 --- a/tg/tl_channels_toggle_username_gen.go +++ b/tg/tl_channels_toggle_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_username_slices_gen.go b/tg/tl_channels_toggle_username_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_username_slices_gen.go +++ b/tg/tl_channels_toggle_username_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_view_forum_as_messages_gen.go b/tg/tl_channels_toggle_view_forum_as_messages_gen.go index 432ed8a06b..b9a116a710 100644 --- a/tg/tl_channels_toggle_view_forum_as_messages_gen.go +++ b/tg/tl_channels_toggle_view_forum_as_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_toggle_view_forum_as_messages_slices_gen.go b/tg/tl_channels_toggle_view_forum_as_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_toggle_view_forum_as_messages_slices_gen.go +++ b/tg/tl_channels_toggle_view_forum_as_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_update_color_gen.go b/tg/tl_channels_update_color_gen.go index 0941943709..f0d27ba025 100644 --- a/tg/tl_channels_update_color_gen.go +++ b/tg/tl_channels_update_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_update_color_slices_gen.go b/tg/tl_channels_update_color_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_update_color_slices_gen.go +++ b/tg/tl_channels_update_color_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_update_emoji_status_gen.go b/tg/tl_channels_update_emoji_status_gen.go index ea08c46da7..f036a7cdb3 100644 --- a/tg/tl_channels_update_emoji_status_gen.go +++ b/tg/tl_channels_update_emoji_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_update_emoji_status_slices_gen.go b/tg/tl_channels_update_emoji_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_update_emoji_status_slices_gen.go +++ b/tg/tl_channels_update_emoji_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_update_pinned_forum_topic_gen.go b/tg/tl_channels_update_pinned_forum_topic_gen.go index 910b058829..13ceac441b 100644 --- a/tg/tl_channels_update_pinned_forum_topic_gen.go +++ b/tg/tl_channels_update_pinned_forum_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_update_pinned_forum_topic_slices_gen.go b/tg/tl_channels_update_pinned_forum_topic_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_update_pinned_forum_topic_slices_gen.go +++ b/tg/tl_channels_update_pinned_forum_topic_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_update_username_gen.go b/tg/tl_channels_update_username_gen.go index e06e04b5f4..96202c9250 100644 --- a/tg/tl_channels_update_username_gen.go +++ b/tg/tl_channels_update_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_channels_update_username_slices_gen.go b/tg/tl_channels_update_username_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_channels_update_username_slices_gen.go +++ b/tg/tl_channels_update_username_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_admin_rights_gen.go b/tg/tl_chat_admin_rights_gen.go index b5cc3982c2..c76599bfb7 100644 --- a/tg/tl_chat_admin_rights_gen.go +++ b/tg/tl_chat_admin_rights_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_admin_rights_slices_gen.go b/tg/tl_chat_admin_rights_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chat_admin_rights_slices_gen.go +++ b/tg/tl_chat_admin_rights_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_admin_with_invites_gen.go b/tg/tl_chat_admin_with_invites_gen.go index 14fac82ba7..c6bf3ad133 100644 --- a/tg/tl_chat_admin_with_invites_gen.go +++ b/tg/tl_chat_admin_with_invites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_admin_with_invites_slices_gen.go b/tg/tl_chat_admin_with_invites_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chat_admin_with_invites_slices_gen.go +++ b/tg/tl_chat_admin_with_invites_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_banned_rights_gen.go b/tg/tl_chat_banned_rights_gen.go index 9a7076a03a..922855ba38 100644 --- a/tg/tl_chat_banned_rights_gen.go +++ b/tg/tl_chat_banned_rights_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_banned_rights_slices_gen.go b/tg/tl_chat_banned_rights_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chat_banned_rights_slices_gen.go +++ b/tg/tl_chat_banned_rights_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_full_gen.go b/tg/tl_chat_full_gen.go index 00577c1661..7c91b970ea 100644 --- a/tg/tl_chat_full_gen.go +++ b/tg/tl_chat_full_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_full_slices_gen.go b/tg/tl_chat_full_slices_gen.go index b57502b138..6ead8d951f 100644 --- a/tg/tl_chat_full_slices_gen.go +++ b/tg/tl_chat_full_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_gen.go b/tg/tl_chat_gen.go index 7200e66457..980860d5ad 100644 --- a/tg/tl_chat_gen.go +++ b/tg/tl_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_invite_gen.go b/tg/tl_chat_invite_gen.go index 871ebf2688..66884c7f99 100644 --- a/tg/tl_chat_invite_gen.go +++ b/tg/tl_chat_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_invite_importer_gen.go b/tg/tl_chat_invite_importer_gen.go index 1976290e93..f1318a158c 100644 --- a/tg/tl_chat_invite_importer_gen.go +++ b/tg/tl_chat_invite_importer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_invite_importer_slices_gen.go b/tg/tl_chat_invite_importer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chat_invite_importer_slices_gen.go +++ b/tg/tl_chat_invite_importer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_invite_slices_gen.go b/tg/tl_chat_invite_slices_gen.go index 30c8bdf294..f2e9f44975 100644 --- a/tg/tl_chat_invite_slices_gen.go +++ b/tg/tl_chat_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_onlines_gen.go b/tg/tl_chat_onlines_gen.go index 261efa9356..8f67c81acf 100644 --- a/tg/tl_chat_onlines_gen.go +++ b/tg/tl_chat_onlines_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_onlines_slices_gen.go b/tg/tl_chat_onlines_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chat_onlines_slices_gen.go +++ b/tg/tl_chat_onlines_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_participant_gen.go b/tg/tl_chat_participant_gen.go index ab2bc97e52..3eb27a9933 100644 --- a/tg/tl_chat_participant_gen.go +++ b/tg/tl_chat_participant_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_participant_slices_gen.go b/tg/tl_chat_participant_slices_gen.go index 053e10d653..702727f008 100644 --- a/tg/tl_chat_participant_slices_gen.go +++ b/tg/tl_chat_participant_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_participants_gen.go b/tg/tl_chat_participants_gen.go index ee1ffe2eb6..55279f6100 100644 --- a/tg/tl_chat_participants_gen.go +++ b/tg/tl_chat_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_participants_slices_gen.go b/tg/tl_chat_participants_slices_gen.go index 20fe21aa63..66c49ffb87 100644 --- a/tg/tl_chat_participants_slices_gen.go +++ b/tg/tl_chat_participants_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_photo_gen.go b/tg/tl_chat_photo_gen.go index a9c93ffa18..f2c42d0155 100644 --- a/tg/tl_chat_photo_gen.go +++ b/tg/tl_chat_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_photo_slices_gen.go b/tg/tl_chat_photo_slices_gen.go index 60d3b36471..51d7a3c261 100644 --- a/tg/tl_chat_photo_slices_gen.go +++ b/tg/tl_chat_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_reactions_gen.go b/tg/tl_chat_reactions_gen.go index 14b5f0f558..5de2e24217 100644 --- a/tg/tl_chat_reactions_gen.go +++ b/tg/tl_chat_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_reactions_slices_gen.go b/tg/tl_chat_reactions_slices_gen.go index 359f696ce1..7c7133366e 100644 --- a/tg/tl_chat_reactions_slices_gen.go +++ b/tg/tl_chat_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chat_slices_gen.go b/tg/tl_chat_slices_gen.go index cb6c629b7a..29957c49d9 100644 --- a/tg/tl_chat_slices_gen.go +++ b/tg/tl_chat_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_chatlist_invite_gen.go b/tg/tl_chatlists_chatlist_invite_gen.go index 28fa24cfeb..335618c4c3 100644 --- a/tg/tl_chatlists_chatlist_invite_gen.go +++ b/tg/tl_chatlists_chatlist_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_chatlist_invite_slices_gen.go b/tg/tl_chatlists_chatlist_invite_slices_gen.go index d4eee64470..9ff8da0e3f 100644 --- a/tg/tl_chatlists_chatlist_invite_slices_gen.go +++ b/tg/tl_chatlists_chatlist_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_chatlist_updates_gen.go b/tg/tl_chatlists_chatlist_updates_gen.go index d951f6019f..0037b3522e 100644 --- a/tg/tl_chatlists_chatlist_updates_gen.go +++ b/tg/tl_chatlists_chatlist_updates_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_chatlist_updates_slices_gen.go b/tg/tl_chatlists_chatlist_updates_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_chatlist_updates_slices_gen.go +++ b/tg/tl_chatlists_chatlist_updates_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_check_chatlist_invite_gen.go b/tg/tl_chatlists_check_chatlist_invite_gen.go index 889876b9f8..1811896e9a 100644 --- a/tg/tl_chatlists_check_chatlist_invite_gen.go +++ b/tg/tl_chatlists_check_chatlist_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_check_chatlist_invite_slices_gen.go b/tg/tl_chatlists_check_chatlist_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_check_chatlist_invite_slices_gen.go +++ b/tg/tl_chatlists_check_chatlist_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_delete_exported_invite_gen.go b/tg/tl_chatlists_delete_exported_invite_gen.go index a68238b9c4..c64302aae7 100644 --- a/tg/tl_chatlists_delete_exported_invite_gen.go +++ b/tg/tl_chatlists_delete_exported_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_delete_exported_invite_slices_gen.go b/tg/tl_chatlists_delete_exported_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_delete_exported_invite_slices_gen.go +++ b/tg/tl_chatlists_delete_exported_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_edit_exported_invite_gen.go b/tg/tl_chatlists_edit_exported_invite_gen.go index 27e47068c2..4c2c659357 100644 --- a/tg/tl_chatlists_edit_exported_invite_gen.go +++ b/tg/tl_chatlists_edit_exported_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_edit_exported_invite_slices_gen.go b/tg/tl_chatlists_edit_exported_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_edit_exported_invite_slices_gen.go +++ b/tg/tl_chatlists_edit_exported_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_export_chatlist_invite_gen.go b/tg/tl_chatlists_export_chatlist_invite_gen.go index 050e3aa194..c879a571a5 100644 --- a/tg/tl_chatlists_export_chatlist_invite_gen.go +++ b/tg/tl_chatlists_export_chatlist_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_export_chatlist_invite_slices_gen.go b/tg/tl_chatlists_export_chatlist_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_export_chatlist_invite_slices_gen.go +++ b/tg/tl_chatlists_export_chatlist_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_exported_chatlist_invite_gen.go b/tg/tl_chatlists_exported_chatlist_invite_gen.go index 4a61da3e90..8eec9bae9a 100644 --- a/tg/tl_chatlists_exported_chatlist_invite_gen.go +++ b/tg/tl_chatlists_exported_chatlist_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_exported_chatlist_invite_slices_gen.go b/tg/tl_chatlists_exported_chatlist_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_exported_chatlist_invite_slices_gen.go +++ b/tg/tl_chatlists_exported_chatlist_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_exported_invites_gen.go b/tg/tl_chatlists_exported_invites_gen.go index 03d0a08084..3b901c6a16 100644 --- a/tg/tl_chatlists_exported_invites_gen.go +++ b/tg/tl_chatlists_exported_invites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_exported_invites_slices_gen.go b/tg/tl_chatlists_exported_invites_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_exported_invites_slices_gen.go +++ b/tg/tl_chatlists_exported_invites_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_get_chatlist_updates_gen.go b/tg/tl_chatlists_get_chatlist_updates_gen.go index beb89c4bbc..68bf02ef3a 100644 --- a/tg/tl_chatlists_get_chatlist_updates_gen.go +++ b/tg/tl_chatlists_get_chatlist_updates_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_get_chatlist_updates_slices_gen.go b/tg/tl_chatlists_get_chatlist_updates_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_get_chatlist_updates_slices_gen.go +++ b/tg/tl_chatlists_get_chatlist_updates_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_get_exported_invites_gen.go b/tg/tl_chatlists_get_exported_invites_gen.go index e72a60e157..2f38e4da5d 100644 --- a/tg/tl_chatlists_get_exported_invites_gen.go +++ b/tg/tl_chatlists_get_exported_invites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_get_exported_invites_slices_gen.go b/tg/tl_chatlists_get_exported_invites_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_get_exported_invites_slices_gen.go +++ b/tg/tl_chatlists_get_exported_invites_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_get_leave_chatlist_suggestions_gen.go b/tg/tl_chatlists_get_leave_chatlist_suggestions_gen.go index 55524bccba..6af792c224 100644 --- a/tg/tl_chatlists_get_leave_chatlist_suggestions_gen.go +++ b/tg/tl_chatlists_get_leave_chatlist_suggestions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_get_leave_chatlist_suggestions_slices_gen.go b/tg/tl_chatlists_get_leave_chatlist_suggestions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_get_leave_chatlist_suggestions_slices_gen.go +++ b/tg/tl_chatlists_get_leave_chatlist_suggestions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_hide_chatlist_updates_gen.go b/tg/tl_chatlists_hide_chatlist_updates_gen.go index cdef5a911b..9cad93f05d 100644 --- a/tg/tl_chatlists_hide_chatlist_updates_gen.go +++ b/tg/tl_chatlists_hide_chatlist_updates_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_hide_chatlist_updates_slices_gen.go b/tg/tl_chatlists_hide_chatlist_updates_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_hide_chatlist_updates_slices_gen.go +++ b/tg/tl_chatlists_hide_chatlist_updates_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_join_chatlist_invite_gen.go b/tg/tl_chatlists_join_chatlist_invite_gen.go index 53bd39116b..71da55fdfe 100644 --- a/tg/tl_chatlists_join_chatlist_invite_gen.go +++ b/tg/tl_chatlists_join_chatlist_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_join_chatlist_invite_slices_gen.go b/tg/tl_chatlists_join_chatlist_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_join_chatlist_invite_slices_gen.go +++ b/tg/tl_chatlists_join_chatlist_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_join_chatlist_updates_gen.go b/tg/tl_chatlists_join_chatlist_updates_gen.go index 9725968c13..78a1093a6b 100644 --- a/tg/tl_chatlists_join_chatlist_updates_gen.go +++ b/tg/tl_chatlists_join_chatlist_updates_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_join_chatlist_updates_slices_gen.go b/tg/tl_chatlists_join_chatlist_updates_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_join_chatlist_updates_slices_gen.go +++ b/tg/tl_chatlists_join_chatlist_updates_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_leave_chatlist_gen.go b/tg/tl_chatlists_leave_chatlist_gen.go index 4ffa2e41e8..583a05ae35 100644 --- a/tg/tl_chatlists_leave_chatlist_gen.go +++ b/tg/tl_chatlists_leave_chatlist_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_chatlists_leave_chatlist_slices_gen.go b/tg/tl_chatlists_leave_chatlist_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_chatlists_leave_chatlist_slices_gen.go +++ b/tg/tl_chatlists_leave_chatlist_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_client_gen.go b/tg/tl_client_gen.go index 9e9f9e1174..1e405c64a9 100644 --- a/tg/tl_client_gen.go +++ b/tg/tl_client_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_code_settings_gen.go b/tg/tl_code_settings_gen.go index e3f9c52be0..03ab376ecd 100644 --- a/tg/tl_code_settings_gen.go +++ b/tg/tl_code_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_code_settings_slices_gen.go b/tg/tl_code_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_code_settings_slices_gen.go +++ b/tg/tl_code_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_config_gen.go b/tg/tl_config_gen.go index f949ab1763..9a74a643f2 100644 --- a/tg/tl_config_gen.go +++ b/tg/tl_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_config_slices_gen.go b/tg/tl_config_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_config_slices_gen.go +++ b/tg/tl_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_connected_bot_gen.go b/tg/tl_connected_bot_gen.go index b502d2fc4a..9f13fb9287 100644 --- a/tg/tl_connected_bot_gen.go +++ b/tg/tl_connected_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_connected_bot_slices_gen.go b/tg/tl_connected_bot_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_connected_bot_slices_gen.go +++ b/tg/tl_connected_bot_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contact_birthday_gen.go b/tg/tl_contact_birthday_gen.go index bce3961a28..dbfe254b98 100644 --- a/tg/tl_contact_birthday_gen.go +++ b/tg/tl_contact_birthday_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contact_birthday_slices_gen.go b/tg/tl_contact_birthday_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contact_birthday_slices_gen.go +++ b/tg/tl_contact_birthday_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contact_gen.go b/tg/tl_contact_gen.go index 6a5cf62d76..5652bf05cb 100644 --- a/tg/tl_contact_gen.go +++ b/tg/tl_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contact_slices_gen.go b/tg/tl_contact_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contact_slices_gen.go +++ b/tg/tl_contact_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contact_status_gen.go b/tg/tl_contact_status_gen.go index 9f5be5e38c..3be57841ae 100644 --- a/tg/tl_contact_status_gen.go +++ b/tg/tl_contact_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contact_status_slices_gen.go b/tg/tl_contact_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contact_status_slices_gen.go +++ b/tg/tl_contact_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contact_status_vector_gen.go b/tg/tl_contact_status_vector_gen.go index 199b59bd9a..6625e6fc13 100644 --- a/tg/tl_contact_status_vector_gen.go +++ b/tg/tl_contact_status_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contact_status_vector_slices_gen.go b/tg/tl_contact_status_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contact_status_vector_slices_gen.go +++ b/tg/tl_contact_status_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_accept_contact_gen.go b/tg/tl_contacts_accept_contact_gen.go index 48fa2cfdc1..f90e0844da 100644 --- a/tg/tl_contacts_accept_contact_gen.go +++ b/tg/tl_contacts_accept_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_accept_contact_slices_gen.go b/tg/tl_contacts_accept_contact_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_accept_contact_slices_gen.go +++ b/tg/tl_contacts_accept_contact_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_add_contact_gen.go b/tg/tl_contacts_add_contact_gen.go index 79bfd14874..eace6e0862 100644 --- a/tg/tl_contacts_add_contact_gen.go +++ b/tg/tl_contacts_add_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_add_contact_slices_gen.go b/tg/tl_contacts_add_contact_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_add_contact_slices_gen.go +++ b/tg/tl_contacts_add_contact_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_block_from_replies_gen.go b/tg/tl_contacts_block_from_replies_gen.go index e6c0a2f4a7..638ac68a04 100644 --- a/tg/tl_contacts_block_from_replies_gen.go +++ b/tg/tl_contacts_block_from_replies_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_block_from_replies_slices_gen.go b/tg/tl_contacts_block_from_replies_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_block_from_replies_slices_gen.go +++ b/tg/tl_contacts_block_from_replies_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_block_gen.go b/tg/tl_contacts_block_gen.go index 6c0a0734b8..3048b475ba 100644 --- a/tg/tl_contacts_block_gen.go +++ b/tg/tl_contacts_block_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_block_slices_gen.go b/tg/tl_contacts_block_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_block_slices_gen.go +++ b/tg/tl_contacts_block_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_blocked_gen.go b/tg/tl_contacts_blocked_gen.go index be6b7cf07e..e42a9c5f08 100644 --- a/tg/tl_contacts_blocked_gen.go +++ b/tg/tl_contacts_blocked_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_blocked_slices_gen.go b/tg/tl_contacts_blocked_slices_gen.go index 741b75bc78..979135a976 100644 --- a/tg/tl_contacts_blocked_slices_gen.go +++ b/tg/tl_contacts_blocked_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_contact_birthdays_gen.go b/tg/tl_contacts_contact_birthdays_gen.go index 88ea8a4d6a..d572511913 100644 --- a/tg/tl_contacts_contact_birthdays_gen.go +++ b/tg/tl_contacts_contact_birthdays_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_contact_birthdays_slices_gen.go b/tg/tl_contacts_contact_birthdays_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_contact_birthdays_slices_gen.go +++ b/tg/tl_contacts_contact_birthdays_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_contacts_gen.go b/tg/tl_contacts_contacts_gen.go index 880b435280..9215ec312e 100644 --- a/tg/tl_contacts_contacts_gen.go +++ b/tg/tl_contacts_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_contacts_slices_gen.go b/tg/tl_contacts_contacts_slices_gen.go index 18e63a784f..0ea2724418 100644 --- a/tg/tl_contacts_contacts_slices_gen.go +++ b/tg/tl_contacts_contacts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_delete_by_phones_gen.go b/tg/tl_contacts_delete_by_phones_gen.go index 306ecf212f..1eea6d8dfd 100644 --- a/tg/tl_contacts_delete_by_phones_gen.go +++ b/tg/tl_contacts_delete_by_phones_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_delete_by_phones_slices_gen.go b/tg/tl_contacts_delete_by_phones_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_delete_by_phones_slices_gen.go +++ b/tg/tl_contacts_delete_by_phones_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_delete_contacts_gen.go b/tg/tl_contacts_delete_contacts_gen.go index 82cb66f269..1ceb449b1d 100644 --- a/tg/tl_contacts_delete_contacts_gen.go +++ b/tg/tl_contacts_delete_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_delete_contacts_slices_gen.go b/tg/tl_contacts_delete_contacts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_delete_contacts_slices_gen.go +++ b/tg/tl_contacts_delete_contacts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_edit_close_friends_gen.go b/tg/tl_contacts_edit_close_friends_gen.go index 2b262279e8..aa699943fb 100644 --- a/tg/tl_contacts_edit_close_friends_gen.go +++ b/tg/tl_contacts_edit_close_friends_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_edit_close_friends_slices_gen.go b/tg/tl_contacts_edit_close_friends_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_edit_close_friends_slices_gen.go +++ b/tg/tl_contacts_edit_close_friends_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_export_contact_token_gen.go b/tg/tl_contacts_export_contact_token_gen.go index 60b51a2752..a530f1e25b 100644 --- a/tg/tl_contacts_export_contact_token_gen.go +++ b/tg/tl_contacts_export_contact_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_export_contact_token_slices_gen.go b/tg/tl_contacts_export_contact_token_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_export_contact_token_slices_gen.go +++ b/tg/tl_contacts_export_contact_token_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_found_gen.go b/tg/tl_contacts_found_gen.go index 7e1d2d4db9..003705b0bf 100644 --- a/tg/tl_contacts_found_gen.go +++ b/tg/tl_contacts_found_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_found_slices_gen.go b/tg/tl_contacts_found_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_found_slices_gen.go +++ b/tg/tl_contacts_found_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_birthdays_gen.go b/tg/tl_contacts_get_birthdays_gen.go index e97c35ca90..29acee8097 100644 --- a/tg/tl_contacts_get_birthdays_gen.go +++ b/tg/tl_contacts_get_birthdays_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_birthdays_slices_gen.go b/tg/tl_contacts_get_birthdays_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_get_birthdays_slices_gen.go +++ b/tg/tl_contacts_get_birthdays_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_blocked_gen.go b/tg/tl_contacts_get_blocked_gen.go index dd9901d023..6863cd3fd9 100644 --- a/tg/tl_contacts_get_blocked_gen.go +++ b/tg/tl_contacts_get_blocked_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_blocked_slices_gen.go b/tg/tl_contacts_get_blocked_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_get_blocked_slices_gen.go +++ b/tg/tl_contacts_get_blocked_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_contact_ids_gen.go b/tg/tl_contacts_get_contact_ids_gen.go index d595991be2..4cd5e38348 100644 --- a/tg/tl_contacts_get_contact_ids_gen.go +++ b/tg/tl_contacts_get_contact_ids_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_contact_ids_slices_gen.go b/tg/tl_contacts_get_contact_ids_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_get_contact_ids_slices_gen.go +++ b/tg/tl_contacts_get_contact_ids_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_contacts_gen.go b/tg/tl_contacts_get_contacts_gen.go index 358d2910f3..b79b0f513f 100644 --- a/tg/tl_contacts_get_contacts_gen.go +++ b/tg/tl_contacts_get_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_contacts_slices_gen.go b/tg/tl_contacts_get_contacts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_get_contacts_slices_gen.go +++ b/tg/tl_contacts_get_contacts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_located_gen.go b/tg/tl_contacts_get_located_gen.go index bc6d5ab183..90c30c714b 100644 --- a/tg/tl_contacts_get_located_gen.go +++ b/tg/tl_contacts_get_located_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_located_slices_gen.go b/tg/tl_contacts_get_located_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_get_located_slices_gen.go +++ b/tg/tl_contacts_get_located_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_saved_gen.go b/tg/tl_contacts_get_saved_gen.go index cbe5cb3a99..35daea2f1b 100644 --- a/tg/tl_contacts_get_saved_gen.go +++ b/tg/tl_contacts_get_saved_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_saved_slices_gen.go b/tg/tl_contacts_get_saved_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_get_saved_slices_gen.go +++ b/tg/tl_contacts_get_saved_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_statuses_gen.go b/tg/tl_contacts_get_statuses_gen.go index ed9d7050c3..3dbc9fc149 100644 --- a/tg/tl_contacts_get_statuses_gen.go +++ b/tg/tl_contacts_get_statuses_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_statuses_slices_gen.go b/tg/tl_contacts_get_statuses_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_get_statuses_slices_gen.go +++ b/tg/tl_contacts_get_statuses_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_top_peers_gen.go b/tg/tl_contacts_get_top_peers_gen.go index 608107644c..6f6f043660 100644 --- a/tg/tl_contacts_get_top_peers_gen.go +++ b/tg/tl_contacts_get_top_peers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_get_top_peers_slices_gen.go b/tg/tl_contacts_get_top_peers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_get_top_peers_slices_gen.go +++ b/tg/tl_contacts_get_top_peers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_import_contact_token_gen.go b/tg/tl_contacts_import_contact_token_gen.go index 6f1e4593fb..c0d0636beb 100644 --- a/tg/tl_contacts_import_contact_token_gen.go +++ b/tg/tl_contacts_import_contact_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_import_contact_token_slices_gen.go b/tg/tl_contacts_import_contact_token_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_import_contact_token_slices_gen.go +++ b/tg/tl_contacts_import_contact_token_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_import_contacts_gen.go b/tg/tl_contacts_import_contacts_gen.go index 25d4d64f3e..8e8b114116 100644 --- a/tg/tl_contacts_import_contacts_gen.go +++ b/tg/tl_contacts_import_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_import_contacts_slices_gen.go b/tg/tl_contacts_import_contacts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_import_contacts_slices_gen.go +++ b/tg/tl_contacts_import_contacts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_imported_contacts_gen.go b/tg/tl_contacts_imported_contacts_gen.go index c6092ac045..4a41191021 100644 --- a/tg/tl_contacts_imported_contacts_gen.go +++ b/tg/tl_contacts_imported_contacts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_imported_contacts_slices_gen.go b/tg/tl_contacts_imported_contacts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_imported_contacts_slices_gen.go +++ b/tg/tl_contacts_imported_contacts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_reset_saved_gen.go b/tg/tl_contacts_reset_saved_gen.go index a2da2e6141..0bf95f1a8b 100644 --- a/tg/tl_contacts_reset_saved_gen.go +++ b/tg/tl_contacts_reset_saved_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_reset_saved_slices_gen.go b/tg/tl_contacts_reset_saved_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_reset_saved_slices_gen.go +++ b/tg/tl_contacts_reset_saved_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_reset_top_peer_rating_gen.go b/tg/tl_contacts_reset_top_peer_rating_gen.go index 07bd54a5f3..95633071d9 100644 --- a/tg/tl_contacts_reset_top_peer_rating_gen.go +++ b/tg/tl_contacts_reset_top_peer_rating_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_reset_top_peer_rating_slices_gen.go b/tg/tl_contacts_reset_top_peer_rating_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_reset_top_peer_rating_slices_gen.go +++ b/tg/tl_contacts_reset_top_peer_rating_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_resolve_phone_gen.go b/tg/tl_contacts_resolve_phone_gen.go index e459e33200..2d0d1fb09d 100644 --- a/tg/tl_contacts_resolve_phone_gen.go +++ b/tg/tl_contacts_resolve_phone_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_resolve_phone_slices_gen.go b/tg/tl_contacts_resolve_phone_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_resolve_phone_slices_gen.go +++ b/tg/tl_contacts_resolve_phone_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_resolve_username_gen.go b/tg/tl_contacts_resolve_username_gen.go index cb12d9ea9d..882f4b77ba 100644 --- a/tg/tl_contacts_resolve_username_gen.go +++ b/tg/tl_contacts_resolve_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_resolve_username_slices_gen.go b/tg/tl_contacts_resolve_username_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_resolve_username_slices_gen.go +++ b/tg/tl_contacts_resolve_username_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_resolved_peer_gen.go b/tg/tl_contacts_resolved_peer_gen.go index 80a4f72cc7..fd6e9cd09f 100644 --- a/tg/tl_contacts_resolved_peer_gen.go +++ b/tg/tl_contacts_resolved_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_resolved_peer_slices_gen.go b/tg/tl_contacts_resolved_peer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_resolved_peer_slices_gen.go +++ b/tg/tl_contacts_resolved_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_search_gen.go b/tg/tl_contacts_search_gen.go index 1b8b3728e4..ad7d5e32f4 100644 --- a/tg/tl_contacts_search_gen.go +++ b/tg/tl_contacts_search_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_search_slices_gen.go b/tg/tl_contacts_search_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_search_slices_gen.go +++ b/tg/tl_contacts_search_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_set_blocked_gen.go b/tg/tl_contacts_set_blocked_gen.go index 09b1155884..df214d0a77 100644 --- a/tg/tl_contacts_set_blocked_gen.go +++ b/tg/tl_contacts_set_blocked_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_set_blocked_slices_gen.go b/tg/tl_contacts_set_blocked_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_set_blocked_slices_gen.go +++ b/tg/tl_contacts_set_blocked_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_toggle_top_peers_gen.go b/tg/tl_contacts_toggle_top_peers_gen.go index 82028d6513..26db6faed6 100644 --- a/tg/tl_contacts_toggle_top_peers_gen.go +++ b/tg/tl_contacts_toggle_top_peers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_toggle_top_peers_slices_gen.go b/tg/tl_contacts_toggle_top_peers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_toggle_top_peers_slices_gen.go +++ b/tg/tl_contacts_toggle_top_peers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_top_peers_gen.go b/tg/tl_contacts_top_peers_gen.go index 2d8d1d98d7..a494de02f6 100644 --- a/tg/tl_contacts_top_peers_gen.go +++ b/tg/tl_contacts_top_peers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_top_peers_slices_gen.go b/tg/tl_contacts_top_peers_slices_gen.go index 2c54d8d0a1..ba5b53a438 100644 --- a/tg/tl_contacts_top_peers_slices_gen.go +++ b/tg/tl_contacts_top_peers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_unblock_gen.go b/tg/tl_contacts_unblock_gen.go index 88459c929e..b4b7ce1fc9 100644 --- a/tg/tl_contacts_unblock_gen.go +++ b/tg/tl_contacts_unblock_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_contacts_unblock_slices_gen.go b/tg/tl_contacts_unblock_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_contacts_unblock_slices_gen.go +++ b/tg/tl_contacts_unblock_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_data_json_gen.go b/tg/tl_data_json_gen.go index 24dda61bc4..5f822d8d7e 100644 --- a/tg/tl_data_json_gen.go +++ b/tg/tl_data_json_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_data_json_slices_gen.go b/tg/tl_data_json_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_data_json_slices_gen.go +++ b/tg/tl_data_json_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dc_option_gen.go b/tg/tl_dc_option_gen.go index 54c33926b0..56ed360261 100644 --- a/tg/tl_dc_option_gen.go +++ b/tg/tl_dc_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dc_option_slices_gen.go b/tg/tl_dc_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_dc_option_slices_gen.go +++ b/tg/tl_dc_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_default_history_ttl_gen.go b/tg/tl_default_history_ttl_gen.go index 414d432b03..62b34d33e0 100644 --- a/tg/tl_default_history_ttl_gen.go +++ b/tg/tl_default_history_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_default_history_ttl_slices_gen.go b/tg/tl_default_history_ttl_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_default_history_ttl_slices_gen.go +++ b/tg/tl_default_history_ttl_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_filter_gen.go b/tg/tl_dialog_filter_gen.go index d2dee88e5d..4cc19b5970 100644 --- a/tg/tl_dialog_filter_gen.go +++ b/tg/tl_dialog_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_filter_slices_gen.go b/tg/tl_dialog_filter_slices_gen.go index bbb0a3d57d..4b7e2dd712 100644 --- a/tg/tl_dialog_filter_slices_gen.go +++ b/tg/tl_dialog_filter_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_filter_suggested_gen.go b/tg/tl_dialog_filter_suggested_gen.go index 76ad773b60..4adfc56a7c 100644 --- a/tg/tl_dialog_filter_suggested_gen.go +++ b/tg/tl_dialog_filter_suggested_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_filter_suggested_slices_gen.go b/tg/tl_dialog_filter_suggested_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_dialog_filter_suggested_slices_gen.go +++ b/tg/tl_dialog_filter_suggested_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_filter_suggested_vector_gen.go b/tg/tl_dialog_filter_suggested_vector_gen.go index 010a6b7531..4d399a59b4 100644 --- a/tg/tl_dialog_filter_suggested_vector_gen.go +++ b/tg/tl_dialog_filter_suggested_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_filter_suggested_vector_slices_gen.go b/tg/tl_dialog_filter_suggested_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_dialog_filter_suggested_vector_slices_gen.go +++ b/tg/tl_dialog_filter_suggested_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_gen.go b/tg/tl_dialog_gen.go index c1a038e583..58c1c5d6bb 100644 --- a/tg/tl_dialog_gen.go +++ b/tg/tl_dialog_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_peer_class_vector_gen.go b/tg/tl_dialog_peer_class_vector_gen.go index 77a03c2d0d..d39dd18af6 100644 --- a/tg/tl_dialog_peer_class_vector_gen.go +++ b/tg/tl_dialog_peer_class_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_peer_class_vector_slices_gen.go b/tg/tl_dialog_peer_class_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_dialog_peer_class_vector_slices_gen.go +++ b/tg/tl_dialog_peer_class_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_peer_gen.go b/tg/tl_dialog_peer_gen.go index 8929e5b648..a402b557e9 100644 --- a/tg/tl_dialog_peer_gen.go +++ b/tg/tl_dialog_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_peer_slices_gen.go b/tg/tl_dialog_peer_slices_gen.go index 233816ca47..8d28e9f24c 100644 --- a/tg/tl_dialog_peer_slices_gen.go +++ b/tg/tl_dialog_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_dialog_slices_gen.go b/tg/tl_dialog_slices_gen.go index 1334c402d3..da876d9b0d 100644 --- a/tg/tl_dialog_slices_gen.go +++ b/tg/tl_dialog_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_document_attribute_gen.go b/tg/tl_document_attribute_gen.go index eb084fe180..6b48ba6e0d 100644 --- a/tg/tl_document_attribute_gen.go +++ b/tg/tl_document_attribute_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_document_attribute_slices_gen.go b/tg/tl_document_attribute_slices_gen.go index b9b837f342..abc5187d6b 100644 --- a/tg/tl_document_attribute_slices_gen.go +++ b/tg/tl_document_attribute_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_document_class_vector_gen.go b/tg/tl_document_class_vector_gen.go index 1f82fb073b..32324e8573 100644 --- a/tg/tl_document_class_vector_gen.go +++ b/tg/tl_document_class_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_document_class_vector_slices_gen.go b/tg/tl_document_class_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_document_class_vector_slices_gen.go +++ b/tg/tl_document_class_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_document_gen.go b/tg/tl_document_gen.go index 77d77ee769..f1c3851664 100644 --- a/tg/tl_document_gen.go +++ b/tg/tl_document_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_document_slices_gen.go b/tg/tl_document_slices_gen.go index 67096db8e0..eee93c9040 100644 --- a/tg/tl_document_slices_gen.go +++ b/tg/tl_document_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_double_gen.go b/tg/tl_double_gen.go index 7fe25a01db..cc26e8d093 100644 --- a/tg/tl_double_gen.go +++ b/tg/tl_double_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_double_slices_gen.go b/tg/tl_double_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_double_slices_gen.go +++ b/tg/tl_double_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_draft_message_gen.go b/tg/tl_draft_message_gen.go index a652469376..37372100de 100644 --- a/tg/tl_draft_message_gen.go +++ b/tg/tl_draft_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_draft_message_slices_gen.go b/tg/tl_draft_message_slices_gen.go index e7ef1aa097..55fea7d836 100644 --- a/tg/tl_draft_message_slices_gen.go +++ b/tg/tl_draft_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_email_verification_gen.go b/tg/tl_email_verification_gen.go index 4bc213df69..870444a268 100644 --- a/tg/tl_email_verification_gen.go +++ b/tg/tl_email_verification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_email_verification_slices_gen.go b/tg/tl_email_verification_slices_gen.go index 09fb92d504..2923e82462 100644 --- a/tg/tl_email_verification_slices_gen.go +++ b/tg/tl_email_verification_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_email_verify_purpose_gen.go b/tg/tl_email_verify_purpose_gen.go index 669f941ced..bd718801ff 100644 --- a/tg/tl_email_verify_purpose_gen.go +++ b/tg/tl_email_verify_purpose_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_email_verify_purpose_slices_gen.go b/tg/tl_email_verify_purpose_slices_gen.go index 61f169b953..63d1750bf9 100644 --- a/tg/tl_email_verify_purpose_slices_gen.go +++ b/tg/tl_email_verify_purpose_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_group_gen.go b/tg/tl_emoji_group_gen.go index 94c43e2e5f..8e67186b79 100644 --- a/tg/tl_emoji_group_gen.go +++ b/tg/tl_emoji_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_group_slices_gen.go b/tg/tl_emoji_group_slices_gen.go index 93529ec0b1..94ef31e433 100644 --- a/tg/tl_emoji_group_slices_gen.go +++ b/tg/tl_emoji_group_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_keyword_gen.go b/tg/tl_emoji_keyword_gen.go index dc50a53835..9ce298627c 100644 --- a/tg/tl_emoji_keyword_gen.go +++ b/tg/tl_emoji_keyword_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_keyword_slices_gen.go b/tg/tl_emoji_keyword_slices_gen.go index fa9d1a0191..f3fd73925d 100644 --- a/tg/tl_emoji_keyword_slices_gen.go +++ b/tg/tl_emoji_keyword_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_keywords_difference_gen.go b/tg/tl_emoji_keywords_difference_gen.go index 1368924961..c4b948346e 100644 --- a/tg/tl_emoji_keywords_difference_gen.go +++ b/tg/tl_emoji_keywords_difference_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_keywords_difference_slices_gen.go b/tg/tl_emoji_keywords_difference_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_emoji_keywords_difference_slices_gen.go +++ b/tg/tl_emoji_keywords_difference_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_language_gen.go b/tg/tl_emoji_language_gen.go index 2ec279bf0e..2ef8eb48fb 100644 --- a/tg/tl_emoji_language_gen.go +++ b/tg/tl_emoji_language_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_language_slices_gen.go b/tg/tl_emoji_language_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_emoji_language_slices_gen.go +++ b/tg/tl_emoji_language_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_language_vector_gen.go b/tg/tl_emoji_language_vector_gen.go index 5f898fa7da..4f05b0bea8 100644 --- a/tg/tl_emoji_language_vector_gen.go +++ b/tg/tl_emoji_language_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_language_vector_slices_gen.go b/tg/tl_emoji_language_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_emoji_language_vector_slices_gen.go +++ b/tg/tl_emoji_language_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_list_gen.go b/tg/tl_emoji_list_gen.go index 58310b08f0..365dfc6412 100644 --- a/tg/tl_emoji_list_gen.go +++ b/tg/tl_emoji_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_list_slices_gen.go b/tg/tl_emoji_list_slices_gen.go index 5f7588e016..e401542a9d 100644 --- a/tg/tl_emoji_list_slices_gen.go +++ b/tg/tl_emoji_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_status_gen.go b/tg/tl_emoji_status_gen.go index b6480e7222..4bdd61e9a9 100644 --- a/tg/tl_emoji_status_gen.go +++ b/tg/tl_emoji_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_status_slices_gen.go b/tg/tl_emoji_status_slices_gen.go index efe995a2d1..115f87fd5b 100644 --- a/tg/tl_emoji_status_slices_gen.go +++ b/tg/tl_emoji_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_url_gen.go b/tg/tl_emoji_url_gen.go index 749b02b17a..ae0627e51b 100644 --- a/tg/tl_emoji_url_gen.go +++ b/tg/tl_emoji_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_emoji_url_slices_gen.go b/tg/tl_emoji_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_emoji_url_slices_gen.go +++ b/tg/tl_emoji_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_encrypted_chat_gen.go b/tg/tl_encrypted_chat_gen.go index b786437c7e..36762e082c 100644 --- a/tg/tl_encrypted_chat_gen.go +++ b/tg/tl_encrypted_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_encrypted_chat_slices_gen.go b/tg/tl_encrypted_chat_slices_gen.go index a23566d492..c050bdac7b 100644 --- a/tg/tl_encrypted_chat_slices_gen.go +++ b/tg/tl_encrypted_chat_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_encrypted_file_gen.go b/tg/tl_encrypted_file_gen.go index 00c5613450..c5163ceb3c 100644 --- a/tg/tl_encrypted_file_gen.go +++ b/tg/tl_encrypted_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_encrypted_file_slices_gen.go b/tg/tl_encrypted_file_slices_gen.go index 8b22c28152..ec5f1b8b52 100644 --- a/tg/tl_encrypted_file_slices_gen.go +++ b/tg/tl_encrypted_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_encrypted_message_gen.go b/tg/tl_encrypted_message_gen.go index 58e5045bb2..a61d7bf1bd 100644 --- a/tg/tl_encrypted_message_gen.go +++ b/tg/tl_encrypted_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_encrypted_message_slices_gen.go b/tg/tl_encrypted_message_slices_gen.go index 6d307349b4..4840415115 100644 --- a/tg/tl_encrypted_message_slices_gen.go +++ b/tg/tl_encrypted_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_error_gen.go b/tg/tl_error_gen.go index af2386b96a..d017030535 100644 --- a/tg/tl_error_gen.go +++ b/tg/tl_error_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_error_slices_gen.go b/tg/tl_error_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_error_slices_gen.go +++ b/tg/tl_error_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_errors_gen.go b/tg/tl_errors_gen.go index 7fa395e316..0cb8c1160e 100644 --- a/tg/tl_errors_gen.go +++ b/tg/tl_errors_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_chat_invite_gen.go b/tg/tl_exported_chat_invite_gen.go index 243b09870c..dce32ad22f 100644 --- a/tg/tl_exported_chat_invite_gen.go +++ b/tg/tl_exported_chat_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_chat_invite_slices_gen.go b/tg/tl_exported_chat_invite_slices_gen.go index ede5e69040..ebd240cfc4 100644 --- a/tg/tl_exported_chat_invite_slices_gen.go +++ b/tg/tl_exported_chat_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_chatlist_invite_gen.go b/tg/tl_exported_chatlist_invite_gen.go index 15721c40fa..b6da897460 100644 --- a/tg/tl_exported_chatlist_invite_gen.go +++ b/tg/tl_exported_chatlist_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_chatlist_invite_slices_gen.go b/tg/tl_exported_chatlist_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_exported_chatlist_invite_slices_gen.go +++ b/tg/tl_exported_chatlist_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_contact_token_gen.go b/tg/tl_exported_contact_token_gen.go index 0730eaafd8..598fad94ab 100644 --- a/tg/tl_exported_contact_token_gen.go +++ b/tg/tl_exported_contact_token_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_contact_token_slices_gen.go b/tg/tl_exported_contact_token_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_exported_contact_token_slices_gen.go +++ b/tg/tl_exported_contact_token_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_message_link_gen.go b/tg/tl_exported_message_link_gen.go index 31bbeef79d..d0a9964a5b 100644 --- a/tg/tl_exported_message_link_gen.go +++ b/tg/tl_exported_message_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_message_link_slices_gen.go b/tg/tl_exported_message_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_exported_message_link_slices_gen.go +++ b/tg/tl_exported_message_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_story_link_gen.go b/tg/tl_exported_story_link_gen.go index 8f6fa9756a..08e820def8 100644 --- a/tg/tl_exported_story_link_gen.go +++ b/tg/tl_exported_story_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_exported_story_link_slices_gen.go b/tg/tl_exported_story_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_exported_story_link_slices_gen.go +++ b/tg/tl_exported_story_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_fact_check_gen.go b/tg/tl_fact_check_gen.go index 697143e7d3..8d90d5ec6a 100644 --- a/tg/tl_fact_check_gen.go +++ b/tg/tl_fact_check_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_fact_check_slices_gen.go b/tg/tl_fact_check_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_fact_check_slices_gen.go +++ b/tg/tl_fact_check_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_fact_check_vector_gen.go b/tg/tl_fact_check_vector_gen.go index 1612c91c25..0f04bb27e8 100644 --- a/tg/tl_fact_check_vector_gen.go +++ b/tg/tl_fact_check_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_fact_check_vector_slices_gen.go b/tg/tl_fact_check_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_fact_check_vector_slices_gen.go +++ b/tg/tl_fact_check_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_file_hash_gen.go b/tg/tl_file_hash_gen.go index 4652ef6ecf..c44d24b3c0 100644 --- a/tg/tl_file_hash_gen.go +++ b/tg/tl_file_hash_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_file_hash_slices_gen.go b/tg/tl_file_hash_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_file_hash_slices_gen.go +++ b/tg/tl_file_hash_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_file_hash_vector_gen.go b/tg/tl_file_hash_vector_gen.go index 06baae319e..52f318748a 100644 --- a/tg/tl_file_hash_vector_gen.go +++ b/tg/tl_file_hash_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_file_hash_vector_slices_gen.go b/tg/tl_file_hash_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_file_hash_vector_slices_gen.go +++ b/tg/tl_file_hash_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_folder_gen.go b/tg/tl_folder_gen.go index 8f398ae7e8..b080d2710f 100644 --- a/tg/tl_folder_gen.go +++ b/tg/tl_folder_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_folder_peer_gen.go b/tg/tl_folder_peer_gen.go index f8a7544f85..012c17dff4 100644 --- a/tg/tl_folder_peer_gen.go +++ b/tg/tl_folder_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_folder_peer_slices_gen.go b/tg/tl_folder_peer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_folder_peer_slices_gen.go +++ b/tg/tl_folder_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_folder_slices_gen.go b/tg/tl_folder_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_folder_slices_gen.go +++ b/tg/tl_folder_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_folders_edit_peer_folders_gen.go b/tg/tl_folders_edit_peer_folders_gen.go index bdfd67be1e..a0f92f8bbc 100644 --- a/tg/tl_folders_edit_peer_folders_gen.go +++ b/tg/tl_folders_edit_peer_folders_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_folders_edit_peer_folders_slices_gen.go b/tg/tl_folders_edit_peer_folders_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_folders_edit_peer_folders_slices_gen.go +++ b/tg/tl_folders_edit_peer_folders_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_forum_topic_gen.go b/tg/tl_forum_topic_gen.go index 15d9155424..29a6d94750 100644 --- a/tg/tl_forum_topic_gen.go +++ b/tg/tl_forum_topic_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_forum_topic_slices_gen.go b/tg/tl_forum_topic_slices_gen.go index 360ba7d1dc..541bc2d247 100644 --- a/tg/tl_forum_topic_slices_gen.go +++ b/tg/tl_forum_topic_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_found_story_gen.go b/tg/tl_found_story_gen.go index 351e9b9b77..bbad1e3e74 100644 --- a/tg/tl_found_story_gen.go +++ b/tg/tl_found_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_found_story_slices_gen.go b/tg/tl_found_story_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_found_story_slices_gen.go +++ b/tg/tl_found_story_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_fragment_collectible_info_gen.go b/tg/tl_fragment_collectible_info_gen.go index d6096889bd..5eafca6111 100644 --- a/tg/tl_fragment_collectible_info_gen.go +++ b/tg/tl_fragment_collectible_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_fragment_collectible_info_slices_gen.go b/tg/tl_fragment_collectible_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_fragment_collectible_info_slices_gen.go +++ b/tg/tl_fragment_collectible_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_fragment_get_collectible_info_gen.go b/tg/tl_fragment_get_collectible_info_gen.go index 09501ee54e..0b8399756d 100644 --- a/tg/tl_fragment_get_collectible_info_gen.go +++ b/tg/tl_fragment_get_collectible_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_fragment_get_collectible_info_slices_gen.go b/tg/tl_fragment_get_collectible_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_fragment_get_collectible_info_slices_gen.go +++ b/tg/tl_fragment_get_collectible_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_game_gen.go b/tg/tl_game_gen.go index 5a212f2221..ca0b36b2fd 100644 --- a/tg/tl_game_gen.go +++ b/tg/tl_game_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_game_slices_gen.go b/tg/tl_game_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_game_slices_gen.go +++ b/tg/tl_game_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_geo_point_address_gen.go b/tg/tl_geo_point_address_gen.go index 0864b03069..203c3e6d6c 100644 --- a/tg/tl_geo_point_address_gen.go +++ b/tg/tl_geo_point_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_geo_point_address_slices_gen.go b/tg/tl_geo_point_address_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_geo_point_address_slices_gen.go +++ b/tg/tl_geo_point_address_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_geo_point_gen.go b/tg/tl_geo_point_gen.go index 0b56fbae6f..8f04379d71 100644 --- a/tg/tl_geo_point_gen.go +++ b/tg/tl_geo_point_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_geo_point_slices_gen.go b/tg/tl_geo_point_slices_gen.go index c5a7ab5bd9..5abb7c9486 100644 --- a/tg/tl_geo_point_slices_gen.go +++ b/tg/tl_geo_point_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_global_privacy_settings_gen.go b/tg/tl_global_privacy_settings_gen.go index 02af6be30f..d3789511ea 100644 --- a/tg/tl_global_privacy_settings_gen.go +++ b/tg/tl_global_privacy_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_global_privacy_settings_slices_gen.go b/tg/tl_global_privacy_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_global_privacy_settings_slices_gen.go +++ b/tg/tl_global_privacy_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_gen.go b/tg/tl_group_call_gen.go index a69bdc451b..42e46208d0 100644 --- a/tg/tl_group_call_gen.go +++ b/tg/tl_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_participant_gen.go b/tg/tl_group_call_participant_gen.go index b6be0b53df..9ea77d5f10 100644 --- a/tg/tl_group_call_participant_gen.go +++ b/tg/tl_group_call_participant_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_participant_slices_gen.go b/tg/tl_group_call_participant_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_group_call_participant_slices_gen.go +++ b/tg/tl_group_call_participant_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_participant_video_gen.go b/tg/tl_group_call_participant_video_gen.go index 572bbccd84..16545e975e 100644 --- a/tg/tl_group_call_participant_video_gen.go +++ b/tg/tl_group_call_participant_video_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_participant_video_slices_gen.go b/tg/tl_group_call_participant_video_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_group_call_participant_video_slices_gen.go +++ b/tg/tl_group_call_participant_video_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_participant_video_source_group_gen.go b/tg/tl_group_call_participant_video_source_group_gen.go index 8f82e88733..c33dae7b0d 100644 --- a/tg/tl_group_call_participant_video_source_group_gen.go +++ b/tg/tl_group_call_participant_video_source_group_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_participant_video_source_group_slices_gen.go b/tg/tl_group_call_participant_video_source_group_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_group_call_participant_video_source_group_slices_gen.go +++ b/tg/tl_group_call_participant_video_source_group_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_slices_gen.go b/tg/tl_group_call_slices_gen.go index 4bcf5191b5..9a90856b8f 100644 --- a/tg/tl_group_call_slices_gen.go +++ b/tg/tl_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_stream_channel_gen.go b/tg/tl_group_call_stream_channel_gen.go index 7e14816d75..af8bd85589 100644 --- a/tg/tl_group_call_stream_channel_gen.go +++ b/tg/tl_group_call_stream_channel_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_group_call_stream_channel_slices_gen.go b/tg/tl_group_call_stream_channel_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_group_call_stream_channel_slices_gen.go +++ b/tg/tl_group_call_stream_channel_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_handlers_gen.go b/tg/tl_handlers_gen.go index 425c1a15ca..d9553c9cd2 100644 --- a/tg/tl_handlers_gen.go +++ b/tg/tl_handlers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. @@ -44,12 +44,10 @@ func NewUpdateDispatcher() UpdateDispatcher { } type Entities struct { - Short bool - Users map[int64]*User - Chats map[int64]*Chat - Channels map[int64]*Channel - ChatsForbidden map[int64]*ChatForbidden - ChannelsForbidden map[int64]*ChannelForbidden + Short bool + Users map[int64]*User + Chats map[int64]*Chat + Channels map[int64]*Channel } func (u *Entities) short() { @@ -57,8 +55,6 @@ func (u *Entities) short() { u.Users = make(map[int64]*User, 0) u.Chats = make(map[int64]*Chat, 0) u.Channels = make(map[int64]*Channel, 0) - u.ChatsForbidden = make(map[int64]*ChatForbidden, 0) - u.ChannelsForbidden = make(map[int64]*ChannelForbidden, 0) } // Handle implements UpdateDispatcher. @@ -74,16 +70,12 @@ func (u UpdateDispatcher) Handle(ctx context.Context, updates UpdatesClass) erro chats := u.MapChats() e.Chats = chats.ChatToMap() e.Channels = chats.ChannelToMap() - e.ChatsForbidden = chats.ChatForbiddenToMap() - e.ChannelsForbidden = chats.ChannelForbiddenToMap() case *UpdatesCombined: upds = u.Updates e.Users = u.MapUsers().NotEmptyToMap() chats := u.MapChats() e.Chats = chats.ChatToMap() e.Channels = chats.ChannelToMap() - e.ChatsForbidden = chats.ChatForbiddenToMap() - e.ChannelsForbidden = chats.ChannelForbiddenToMap() case *UpdateShort: upds = []UpdateClass{u.Update} e.short() diff --git a/tg/tl_help_accept_terms_of_service_gen.go b/tg/tl_help_accept_terms_of_service_gen.go index 9b128a9b02..7252f344fb 100644 --- a/tg/tl_help_accept_terms_of_service_gen.go +++ b/tg/tl_help_accept_terms_of_service_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_accept_terms_of_service_slices_gen.go b/tg/tl_help_accept_terms_of_service_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_accept_terms_of_service_slices_gen.go +++ b/tg/tl_help_accept_terms_of_service_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_app_config_gen.go b/tg/tl_help_app_config_gen.go index 9aa61020e7..678e6b7a4a 100644 --- a/tg/tl_help_app_config_gen.go +++ b/tg/tl_help_app_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_app_config_slices_gen.go b/tg/tl_help_app_config_slices_gen.go index 8a7388a80c..3b52f2e1b1 100644 --- a/tg/tl_help_app_config_slices_gen.go +++ b/tg/tl_help_app_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_app_update_gen.go b/tg/tl_help_app_update_gen.go index 737271335d..9cf3978395 100644 --- a/tg/tl_help_app_update_gen.go +++ b/tg/tl_help_app_update_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_app_update_slices_gen.go b/tg/tl_help_app_update_slices_gen.go index 239c0315ef..6ee13923f5 100644 --- a/tg/tl_help_app_update_slices_gen.go +++ b/tg/tl_help_app_update_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_config_simple_gen.go b/tg/tl_help_config_simple_gen.go index 24fe417ed7..9eb385a7e2 100644 --- a/tg/tl_help_config_simple_gen.go +++ b/tg/tl_help_config_simple_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_config_simple_slices_gen.go b/tg/tl_help_config_simple_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_config_simple_slices_gen.go +++ b/tg/tl_help_config_simple_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_countries_list_gen.go b/tg/tl_help_countries_list_gen.go index 77d3d827b9..6981f22bba 100644 --- a/tg/tl_help_countries_list_gen.go +++ b/tg/tl_help_countries_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_countries_list_slices_gen.go b/tg/tl_help_countries_list_slices_gen.go index c48db00844..ad3c990599 100644 --- a/tg/tl_help_countries_list_slices_gen.go +++ b/tg/tl_help_countries_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_country_code_gen.go b/tg/tl_help_country_code_gen.go index 7734895277..cc2f330257 100644 --- a/tg/tl_help_country_code_gen.go +++ b/tg/tl_help_country_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_country_code_slices_gen.go b/tg/tl_help_country_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_country_code_slices_gen.go +++ b/tg/tl_help_country_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_country_gen.go b/tg/tl_help_country_gen.go index 4bd6dc5577..471972fb99 100644 --- a/tg/tl_help_country_gen.go +++ b/tg/tl_help_country_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_country_slices_gen.go b/tg/tl_help_country_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_country_slices_gen.go +++ b/tg/tl_help_country_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_deep_link_info_gen.go b/tg/tl_help_deep_link_info_gen.go index 012649045f..7a02b254d7 100644 --- a/tg/tl_help_deep_link_info_gen.go +++ b/tg/tl_help_deep_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_deep_link_info_slices_gen.go b/tg/tl_help_deep_link_info_slices_gen.go index 34939b0a0e..4767d752cf 100644 --- a/tg/tl_help_deep_link_info_slices_gen.go +++ b/tg/tl_help_deep_link_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_dismiss_suggestion_gen.go b/tg/tl_help_dismiss_suggestion_gen.go index 87af706176..1b2a5a8b6b 100644 --- a/tg/tl_help_dismiss_suggestion_gen.go +++ b/tg/tl_help_dismiss_suggestion_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_dismiss_suggestion_slices_gen.go b/tg/tl_help_dismiss_suggestion_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_dismiss_suggestion_slices_gen.go +++ b/tg/tl_help_dismiss_suggestion_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_edit_user_info_gen.go b/tg/tl_help_edit_user_info_gen.go index 78b36b033a..20dd62941e 100644 --- a/tg/tl_help_edit_user_info_gen.go +++ b/tg/tl_help_edit_user_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_edit_user_info_slices_gen.go b/tg/tl_help_edit_user_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_edit_user_info_slices_gen.go +++ b/tg/tl_help_edit_user_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_app_config_gen.go b/tg/tl_help_get_app_config_gen.go index 4ae7ab457c..ab8e4444df 100644 --- a/tg/tl_help_get_app_config_gen.go +++ b/tg/tl_help_get_app_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_app_config_slices_gen.go b/tg/tl_help_get_app_config_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_app_config_slices_gen.go +++ b/tg/tl_help_get_app_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_app_update_gen.go b/tg/tl_help_get_app_update_gen.go index 8b166d4691..1f11e5d12b 100644 --- a/tg/tl_help_get_app_update_gen.go +++ b/tg/tl_help_get_app_update_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_app_update_slices_gen.go b/tg/tl_help_get_app_update_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_app_update_slices_gen.go +++ b/tg/tl_help_get_app_update_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_cdn_config_gen.go b/tg/tl_help_get_cdn_config_gen.go index 565185e821..97d15e0be8 100644 --- a/tg/tl_help_get_cdn_config_gen.go +++ b/tg/tl_help_get_cdn_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_cdn_config_slices_gen.go b/tg/tl_help_get_cdn_config_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_cdn_config_slices_gen.go +++ b/tg/tl_help_get_cdn_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_config_gen.go b/tg/tl_help_get_config_gen.go index ba169369c2..45db3ced51 100644 --- a/tg/tl_help_get_config_gen.go +++ b/tg/tl_help_get_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_config_slices_gen.go b/tg/tl_help_get_config_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_config_slices_gen.go +++ b/tg/tl_help_get_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_countries_list_gen.go b/tg/tl_help_get_countries_list_gen.go index 129922f9c8..c0b2ad6713 100644 --- a/tg/tl_help_get_countries_list_gen.go +++ b/tg/tl_help_get_countries_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_countries_list_slices_gen.go b/tg/tl_help_get_countries_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_countries_list_slices_gen.go +++ b/tg/tl_help_get_countries_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_deep_link_info_gen.go b/tg/tl_help_get_deep_link_info_gen.go index 014aec9fa8..3ef8fbc311 100644 --- a/tg/tl_help_get_deep_link_info_gen.go +++ b/tg/tl_help_get_deep_link_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_deep_link_info_slices_gen.go b/tg/tl_help_get_deep_link_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_deep_link_info_slices_gen.go +++ b/tg/tl_help_get_deep_link_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_invite_text_gen.go b/tg/tl_help_get_invite_text_gen.go index d21535ffa2..33acd5957e 100644 --- a/tg/tl_help_get_invite_text_gen.go +++ b/tg/tl_help_get_invite_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_invite_text_slices_gen.go b/tg/tl_help_get_invite_text_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_invite_text_slices_gen.go +++ b/tg/tl_help_get_invite_text_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_nearest_dc_gen.go b/tg/tl_help_get_nearest_dc_gen.go index f7c210f9f3..422a228927 100644 --- a/tg/tl_help_get_nearest_dc_gen.go +++ b/tg/tl_help_get_nearest_dc_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_nearest_dc_slices_gen.go b/tg/tl_help_get_nearest_dc_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_nearest_dc_slices_gen.go +++ b/tg/tl_help_get_nearest_dc_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_passport_config_gen.go b/tg/tl_help_get_passport_config_gen.go index 10f0e0cb29..7316eaeeaf 100644 --- a/tg/tl_help_get_passport_config_gen.go +++ b/tg/tl_help_get_passport_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_passport_config_slices_gen.go b/tg/tl_help_get_passport_config_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_passport_config_slices_gen.go +++ b/tg/tl_help_get_passport_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_peer_colors_gen.go b/tg/tl_help_get_peer_colors_gen.go index 1350d50c10..b8e4b13f93 100644 --- a/tg/tl_help_get_peer_colors_gen.go +++ b/tg/tl_help_get_peer_colors_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_peer_colors_slices_gen.go b/tg/tl_help_get_peer_colors_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_peer_colors_slices_gen.go +++ b/tg/tl_help_get_peer_colors_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_peer_profile_colors_gen.go b/tg/tl_help_get_peer_profile_colors_gen.go index a8f27b3baa..b9f0e53cec 100644 --- a/tg/tl_help_get_peer_profile_colors_gen.go +++ b/tg/tl_help_get_peer_profile_colors_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_peer_profile_colors_slices_gen.go b/tg/tl_help_get_peer_profile_colors_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_peer_profile_colors_slices_gen.go +++ b/tg/tl_help_get_peer_profile_colors_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_premium_promo_gen.go b/tg/tl_help_get_premium_promo_gen.go index 5886a5a673..4b1b503c93 100644 --- a/tg/tl_help_get_premium_promo_gen.go +++ b/tg/tl_help_get_premium_promo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_premium_promo_slices_gen.go b/tg/tl_help_get_premium_promo_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_premium_promo_slices_gen.go +++ b/tg/tl_help_get_premium_promo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_promo_data_gen.go b/tg/tl_help_get_promo_data_gen.go index 2ac30fbffb..0f5b2c95fa 100644 --- a/tg/tl_help_get_promo_data_gen.go +++ b/tg/tl_help_get_promo_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_promo_data_slices_gen.go b/tg/tl_help_get_promo_data_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_promo_data_slices_gen.go +++ b/tg/tl_help_get_promo_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_recent_me_urls_gen.go b/tg/tl_help_get_recent_me_urls_gen.go index 4ba3d0411b..92cf814f8f 100644 --- a/tg/tl_help_get_recent_me_urls_gen.go +++ b/tg/tl_help_get_recent_me_urls_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_recent_me_urls_slices_gen.go b/tg/tl_help_get_recent_me_urls_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_recent_me_urls_slices_gen.go +++ b/tg/tl_help_get_recent_me_urls_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_support_gen.go b/tg/tl_help_get_support_gen.go index d4cad15b8d..14a1bbdd26 100644 --- a/tg/tl_help_get_support_gen.go +++ b/tg/tl_help_get_support_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_support_name_gen.go b/tg/tl_help_get_support_name_gen.go index e986a86528..013934422a 100644 --- a/tg/tl_help_get_support_name_gen.go +++ b/tg/tl_help_get_support_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_support_name_slices_gen.go b/tg/tl_help_get_support_name_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_support_name_slices_gen.go +++ b/tg/tl_help_get_support_name_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_support_slices_gen.go b/tg/tl_help_get_support_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_support_slices_gen.go +++ b/tg/tl_help_get_support_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_terms_of_service_update_gen.go b/tg/tl_help_get_terms_of_service_update_gen.go index ce2fd999c7..8223c5caed 100644 --- a/tg/tl_help_get_terms_of_service_update_gen.go +++ b/tg/tl_help_get_terms_of_service_update_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_terms_of_service_update_slices_gen.go b/tg/tl_help_get_terms_of_service_update_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_terms_of_service_update_slices_gen.go +++ b/tg/tl_help_get_terms_of_service_update_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_timezones_list_gen.go b/tg/tl_help_get_timezones_list_gen.go index 180cb107f2..a382705619 100644 --- a/tg/tl_help_get_timezones_list_gen.go +++ b/tg/tl_help_get_timezones_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_timezones_list_slices_gen.go b/tg/tl_help_get_timezones_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_timezones_list_slices_gen.go +++ b/tg/tl_help_get_timezones_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_user_info_gen.go b/tg/tl_help_get_user_info_gen.go index 6bc8b35bab..937cd6be5a 100644 --- a/tg/tl_help_get_user_info_gen.go +++ b/tg/tl_help_get_user_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_get_user_info_slices_gen.go b/tg/tl_help_get_user_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_get_user_info_slices_gen.go +++ b/tg/tl_help_get_user_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_hide_promo_data_gen.go b/tg/tl_help_hide_promo_data_gen.go index c6676dc167..43b168d3f6 100644 --- a/tg/tl_help_hide_promo_data_gen.go +++ b/tg/tl_help_hide_promo_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_hide_promo_data_slices_gen.go b/tg/tl_help_hide_promo_data_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_hide_promo_data_slices_gen.go +++ b/tg/tl_help_hide_promo_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_invite_text_gen.go b/tg/tl_help_invite_text_gen.go index a4073d04cb..676447dd52 100644 --- a/tg/tl_help_invite_text_gen.go +++ b/tg/tl_help_invite_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_invite_text_slices_gen.go b/tg/tl_help_invite_text_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_invite_text_slices_gen.go +++ b/tg/tl_help_invite_text_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_passport_config_gen.go b/tg/tl_help_passport_config_gen.go index c6a8f4da10..59a6bfb712 100644 --- a/tg/tl_help_passport_config_gen.go +++ b/tg/tl_help_passport_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_passport_config_slices_gen.go b/tg/tl_help_passport_config_slices_gen.go index 742bbe5cd3..969147a71a 100644 --- a/tg/tl_help_passport_config_slices_gen.go +++ b/tg/tl_help_passport_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_peer_color_option_gen.go b/tg/tl_help_peer_color_option_gen.go index 6e940c17c2..f1db673f12 100644 --- a/tg/tl_help_peer_color_option_gen.go +++ b/tg/tl_help_peer_color_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_peer_color_option_slices_gen.go b/tg/tl_help_peer_color_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_peer_color_option_slices_gen.go +++ b/tg/tl_help_peer_color_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_peer_color_set_gen.go b/tg/tl_help_peer_color_set_gen.go index 86f2a1d323..473922fe66 100644 --- a/tg/tl_help_peer_color_set_gen.go +++ b/tg/tl_help_peer_color_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_peer_color_set_slices_gen.go b/tg/tl_help_peer_color_set_slices_gen.go index 889477382f..e35dccc137 100644 --- a/tg/tl_help_peer_color_set_slices_gen.go +++ b/tg/tl_help_peer_color_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_peer_colors_gen.go b/tg/tl_help_peer_colors_gen.go index b841208306..3542385c7b 100644 --- a/tg/tl_help_peer_colors_gen.go +++ b/tg/tl_help_peer_colors_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_peer_colors_slices_gen.go b/tg/tl_help_peer_colors_slices_gen.go index a7d6c41e60..a0140b37ee 100644 --- a/tg/tl_help_peer_colors_slices_gen.go +++ b/tg/tl_help_peer_colors_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_premium_promo_gen.go b/tg/tl_help_premium_promo_gen.go index dec72cbf06..6a7ab2ef4c 100644 --- a/tg/tl_help_premium_promo_gen.go +++ b/tg/tl_help_premium_promo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_premium_promo_slices_gen.go b/tg/tl_help_premium_promo_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_premium_promo_slices_gen.go +++ b/tg/tl_help_premium_promo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_promo_data_gen.go b/tg/tl_help_promo_data_gen.go index a9893af2be..54d241abbc 100644 --- a/tg/tl_help_promo_data_gen.go +++ b/tg/tl_help_promo_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_promo_data_slices_gen.go b/tg/tl_help_promo_data_slices_gen.go index e95f6bf208..50d52b3957 100644 --- a/tg/tl_help_promo_data_slices_gen.go +++ b/tg/tl_help_promo_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_recent_me_urls_gen.go b/tg/tl_help_recent_me_urls_gen.go index abacec90f5..addedd6ffc 100644 --- a/tg/tl_help_recent_me_urls_gen.go +++ b/tg/tl_help_recent_me_urls_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_recent_me_urls_slices_gen.go b/tg/tl_help_recent_me_urls_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_recent_me_urls_slices_gen.go +++ b/tg/tl_help_recent_me_urls_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_save_app_log_gen.go b/tg/tl_help_save_app_log_gen.go index ca6cfe8d60..ffee9ff4a7 100644 --- a/tg/tl_help_save_app_log_gen.go +++ b/tg/tl_help_save_app_log_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_save_app_log_slices_gen.go b/tg/tl_help_save_app_log_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_save_app_log_slices_gen.go +++ b/tg/tl_help_save_app_log_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_set_bot_updates_status_gen.go b/tg/tl_help_set_bot_updates_status_gen.go index 815ea3c277..bd8c5d60de 100644 --- a/tg/tl_help_set_bot_updates_status_gen.go +++ b/tg/tl_help_set_bot_updates_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_set_bot_updates_status_slices_gen.go b/tg/tl_help_set_bot_updates_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_set_bot_updates_status_slices_gen.go +++ b/tg/tl_help_set_bot_updates_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_support_gen.go b/tg/tl_help_support_gen.go index 601d90b2ea..51a214289b 100644 --- a/tg/tl_help_support_gen.go +++ b/tg/tl_help_support_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_support_name_gen.go b/tg/tl_help_support_name_gen.go index d68160537a..b2b998abbe 100644 --- a/tg/tl_help_support_name_gen.go +++ b/tg/tl_help_support_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_support_name_slices_gen.go b/tg/tl_help_support_name_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_support_name_slices_gen.go +++ b/tg/tl_help_support_name_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_support_slices_gen.go b/tg/tl_help_support_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_support_slices_gen.go +++ b/tg/tl_help_support_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_terms_of_service_gen.go b/tg/tl_help_terms_of_service_gen.go index cc905333f7..042ccdc5d3 100644 --- a/tg/tl_help_terms_of_service_gen.go +++ b/tg/tl_help_terms_of_service_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_terms_of_service_slices_gen.go b/tg/tl_help_terms_of_service_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_help_terms_of_service_slices_gen.go +++ b/tg/tl_help_terms_of_service_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_terms_of_service_update_gen.go b/tg/tl_help_terms_of_service_update_gen.go index 7794a55ada..4ed6f7be34 100644 --- a/tg/tl_help_terms_of_service_update_gen.go +++ b/tg/tl_help_terms_of_service_update_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_terms_of_service_update_slices_gen.go b/tg/tl_help_terms_of_service_update_slices_gen.go index 3f199b0ef2..7fdf2556cc 100644 --- a/tg/tl_help_terms_of_service_update_slices_gen.go +++ b/tg/tl_help_terms_of_service_update_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_timezones_list_gen.go b/tg/tl_help_timezones_list_gen.go index 39bf7e426d..2042860a96 100644 --- a/tg/tl_help_timezones_list_gen.go +++ b/tg/tl_help_timezones_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_timezones_list_slices_gen.go b/tg/tl_help_timezones_list_slices_gen.go index 6cb42aed98..2dc8bc15d7 100644 --- a/tg/tl_help_timezones_list_slices_gen.go +++ b/tg/tl_help_timezones_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_user_info_gen.go b/tg/tl_help_user_info_gen.go index 3b3ddc98e5..f444544d88 100644 --- a/tg/tl_help_user_info_gen.go +++ b/tg/tl_help_user_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_help_user_info_slices_gen.go b/tg/tl_help_user_info_slices_gen.go index ec70909a11..4a16dcbafc 100644 --- a/tg/tl_help_user_info_slices_gen.go +++ b/tg/tl_help_user_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_high_score_gen.go b/tg/tl_high_score_gen.go index 8bb7212335..1509a6e89d 100644 --- a/tg/tl_high_score_gen.go +++ b/tg/tl_high_score_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_high_score_slices_gen.go b/tg/tl_high_score_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_high_score_slices_gen.go +++ b/tg/tl_high_score_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_imported_contact_gen.go b/tg/tl_imported_contact_gen.go index 5113280013..9334f1b951 100644 --- a/tg/tl_imported_contact_gen.go +++ b/tg/tl_imported_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_imported_contact_slices_gen.go b/tg/tl_imported_contact_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_imported_contact_slices_gen.go +++ b/tg/tl_imported_contact_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_init_connection_gen.go b/tg/tl_init_connection_gen.go index ccd6d3c607..42358ba8af 100644 --- a/tg/tl_init_connection_gen.go +++ b/tg/tl_init_connection_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_init_connection_slices_gen.go b/tg/tl_init_connection_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_init_connection_slices_gen.go +++ b/tg/tl_init_connection_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_inline_bot_switch_p_m_gen.go b/tg/tl_inline_bot_switch_p_m_gen.go index a0ceba4045..30903c19d9 100644 --- a/tg/tl_inline_bot_switch_p_m_gen.go +++ b/tg/tl_inline_bot_switch_p_m_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_inline_bot_switch_p_m_slices_gen.go b/tg/tl_inline_bot_switch_p_m_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_inline_bot_switch_p_m_slices_gen.go +++ b/tg/tl_inline_bot_switch_p_m_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_inline_bot_web_view_gen.go b/tg/tl_inline_bot_web_view_gen.go index 4d313db6e3..6f8f0f0672 100644 --- a/tg/tl_inline_bot_web_view_gen.go +++ b/tg/tl_inline_bot_web_view_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_inline_bot_web_view_slices_gen.go b/tg/tl_inline_bot_web_view_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_inline_bot_web_view_slices_gen.go +++ b/tg/tl_inline_bot_web_view_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_inline_query_peer_type_gen.go b/tg/tl_inline_query_peer_type_gen.go index 822183f6ed..d9f63d91d5 100644 --- a/tg/tl_inline_query_peer_type_gen.go +++ b/tg/tl_inline_query_peer_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_inline_query_peer_type_slices_gen.go b/tg/tl_inline_query_peer_type_slices_gen.go index b67f877f6c..b91821a4ce 100644 --- a/tg/tl_inline_query_peer_type_slices_gen.go +++ b/tg/tl_inline_query_peer_type_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_app_event_gen.go b/tg/tl_input_app_event_gen.go index 9e59191cbe..a0edda914d 100644 --- a/tg/tl_input_app_event_gen.go +++ b/tg/tl_input_app_event_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_app_event_slices_gen.go b/tg/tl_input_app_event_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_app_event_slices_gen.go +++ b/tg/tl_input_app_event_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_bot_app_gen.go b/tg/tl_input_bot_app_gen.go index f978ce7c8a..be6b7f10b2 100644 --- a/tg/tl_input_bot_app_gen.go +++ b/tg/tl_input_bot_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_bot_app_slices_gen.go b/tg/tl_input_bot_app_slices_gen.go index 45d86668f7..58017b8665 100644 --- a/tg/tl_input_bot_app_slices_gen.go +++ b/tg/tl_input_bot_app_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_bot_inline_message_gen.go b/tg/tl_input_bot_inline_message_gen.go index f121ac24f5..8a3a6a9787 100644 --- a/tg/tl_input_bot_inline_message_gen.go +++ b/tg/tl_input_bot_inline_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_bot_inline_message_id_gen.go b/tg/tl_input_bot_inline_message_id_gen.go index 332d3d4357..5359facec3 100644 --- a/tg/tl_input_bot_inline_message_id_gen.go +++ b/tg/tl_input_bot_inline_message_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_bot_inline_message_id_slices_gen.go b/tg/tl_input_bot_inline_message_id_slices_gen.go index b1431cd946..10c95ff9e3 100644 --- a/tg/tl_input_bot_inline_message_id_slices_gen.go +++ b/tg/tl_input_bot_inline_message_id_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_bot_inline_message_slices_gen.go b/tg/tl_input_bot_inline_message_slices_gen.go index d57c6fdea1..b9fdd924de 100644 --- a/tg/tl_input_bot_inline_message_slices_gen.go +++ b/tg/tl_input_bot_inline_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_bot_inline_result_gen.go b/tg/tl_input_bot_inline_result_gen.go index 862649c7bc..e6381a16b6 100644 --- a/tg/tl_input_bot_inline_result_gen.go +++ b/tg/tl_input_bot_inline_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_bot_inline_result_slices_gen.go b/tg/tl_input_bot_inline_result_slices_gen.go index e6479680ce..ed2a2c36c6 100644 --- a/tg/tl_input_bot_inline_result_slices_gen.go +++ b/tg/tl_input_bot_inline_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_away_message_gen.go b/tg/tl_input_business_away_message_gen.go index 2fd7c97ba3..d24897fa00 100644 --- a/tg/tl_input_business_away_message_gen.go +++ b/tg/tl_input_business_away_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_away_message_slices_gen.go b/tg/tl_input_business_away_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_business_away_message_slices_gen.go +++ b/tg/tl_input_business_away_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_bot_recipients_gen.go b/tg/tl_input_business_bot_recipients_gen.go index 1c13f6967f..3cc2925a53 100644 --- a/tg/tl_input_business_bot_recipients_gen.go +++ b/tg/tl_input_business_bot_recipients_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_bot_recipients_slices_gen.go b/tg/tl_input_business_bot_recipients_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_business_bot_recipients_slices_gen.go +++ b/tg/tl_input_business_bot_recipients_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_chat_link_gen.go b/tg/tl_input_business_chat_link_gen.go index c36c7fc9f5..683ef2b710 100644 --- a/tg/tl_input_business_chat_link_gen.go +++ b/tg/tl_input_business_chat_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_chat_link_slices_gen.go b/tg/tl_input_business_chat_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_business_chat_link_slices_gen.go +++ b/tg/tl_input_business_chat_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_greeting_message_gen.go b/tg/tl_input_business_greeting_message_gen.go index 7c383c5fff..161b89af2b 100644 --- a/tg/tl_input_business_greeting_message_gen.go +++ b/tg/tl_input_business_greeting_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_greeting_message_slices_gen.go b/tg/tl_input_business_greeting_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_business_greeting_message_slices_gen.go +++ b/tg/tl_input_business_greeting_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_intro_gen.go b/tg/tl_input_business_intro_gen.go index 1846b9448c..940ef466d8 100644 --- a/tg/tl_input_business_intro_gen.go +++ b/tg/tl_input_business_intro_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_intro_slices_gen.go b/tg/tl_input_business_intro_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_business_intro_slices_gen.go +++ b/tg/tl_input_business_intro_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_recipients_gen.go b/tg/tl_input_business_recipients_gen.go index 94fff2d2cd..60d6608a8d 100644 --- a/tg/tl_input_business_recipients_gen.go +++ b/tg/tl_input_business_recipients_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_business_recipients_slices_gen.go b/tg/tl_input_business_recipients_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_business_recipients_slices_gen.go +++ b/tg/tl_input_business_recipients_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_channel_gen.go b/tg/tl_input_channel_gen.go index a4eaa11652..bc81081f26 100644 --- a/tg/tl_input_channel_gen.go +++ b/tg/tl_input_channel_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_channel_slices_gen.go b/tg/tl_input_channel_slices_gen.go index 33227d9eeb..413fcb4105 100644 --- a/tg/tl_input_channel_slices_gen.go +++ b/tg/tl_input_channel_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_chat_photo_gen.go b/tg/tl_input_chat_photo_gen.go index 29a5e3e20f..cf68459c34 100644 --- a/tg/tl_input_chat_photo_gen.go +++ b/tg/tl_input_chat_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_chat_photo_slices_gen.go b/tg/tl_input_chat_photo_slices_gen.go index 6aa6ecdc09..48ab8ec3cc 100644 --- a/tg/tl_input_chat_photo_slices_gen.go +++ b/tg/tl_input_chat_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_chatlist_dialog_filter_gen.go b/tg/tl_input_chatlist_dialog_filter_gen.go index daaedb5db9..ff131b88a9 100644 --- a/tg/tl_input_chatlist_dialog_filter_gen.go +++ b/tg/tl_input_chatlist_dialog_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_chatlist_dialog_filter_slices_gen.go b/tg/tl_input_chatlist_dialog_filter_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_chatlist_dialog_filter_slices_gen.go +++ b/tg/tl_input_chatlist_dialog_filter_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_check_password_srp_gen.go b/tg/tl_input_check_password_srp_gen.go index 24709a6d60..b2a3d3ade3 100644 --- a/tg/tl_input_check_password_srp_gen.go +++ b/tg/tl_input_check_password_srp_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_check_password_srp_slices_gen.go b/tg/tl_input_check_password_srp_slices_gen.go index 266d4d17dc..73cde2fcb8 100644 --- a/tg/tl_input_check_password_srp_slices_gen.go +++ b/tg/tl_input_check_password_srp_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_client_proxy_gen.go b/tg/tl_input_client_proxy_gen.go index b441412417..05740f43f3 100644 --- a/tg/tl_input_client_proxy_gen.go +++ b/tg/tl_input_client_proxy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_client_proxy_slices_gen.go b/tg/tl_input_client_proxy_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_client_proxy_slices_gen.go +++ b/tg/tl_input_client_proxy_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_collectible_gen.go b/tg/tl_input_collectible_gen.go index 6849ee2017..2329b61913 100644 --- a/tg/tl_input_collectible_gen.go +++ b/tg/tl_input_collectible_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_collectible_slices_gen.go b/tg/tl_input_collectible_slices_gen.go index c55a9cae93..cc254dbad2 100644 --- a/tg/tl_input_collectible_slices_gen.go +++ b/tg/tl_input_collectible_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_dialog_peer_gen.go b/tg/tl_input_dialog_peer_gen.go index fea25b208f..22e95b2620 100644 --- a/tg/tl_input_dialog_peer_gen.go +++ b/tg/tl_input_dialog_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_dialog_peer_slices_gen.go b/tg/tl_input_dialog_peer_slices_gen.go index dd9acdc88a..d5e9b5ccad 100644 --- a/tg/tl_input_dialog_peer_slices_gen.go +++ b/tg/tl_input_dialog_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_document_gen.go b/tg/tl_input_document_gen.go index c3182f1eae..15fc89f5c2 100644 --- a/tg/tl_input_document_gen.go +++ b/tg/tl_input_document_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_document_slices_gen.go b/tg/tl_input_document_slices_gen.go index 0630fe8874..abdd3b39b9 100644 --- a/tg/tl_input_document_slices_gen.go +++ b/tg/tl_input_document_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_encrypted_chat_gen.go b/tg/tl_input_encrypted_chat_gen.go index a4ddc94414..972412804e 100644 --- a/tg/tl_input_encrypted_chat_gen.go +++ b/tg/tl_input_encrypted_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_encrypted_chat_slices_gen.go b/tg/tl_input_encrypted_chat_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_encrypted_chat_slices_gen.go +++ b/tg/tl_input_encrypted_chat_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_encrypted_file_gen.go b/tg/tl_input_encrypted_file_gen.go index 89f855ce24..cd74455807 100644 --- a/tg/tl_input_encrypted_file_gen.go +++ b/tg/tl_input_encrypted_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_encrypted_file_slices_gen.go b/tg/tl_input_encrypted_file_slices_gen.go index 4388d98e78..034b47f712 100644 --- a/tg/tl_input_encrypted_file_slices_gen.go +++ b/tg/tl_input_encrypted_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_file_gen.go b/tg/tl_input_file_gen.go index e11e81e578..37f2cd8b6d 100644 --- a/tg/tl_input_file_gen.go +++ b/tg/tl_input_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_file_location_gen.go b/tg/tl_input_file_location_gen.go index 7a48b85e05..22574c0bf7 100644 --- a/tg/tl_input_file_location_gen.go +++ b/tg/tl_input_file_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_file_location_slices_gen.go b/tg/tl_input_file_location_slices_gen.go index 6dfc4aca42..d4946269db 100644 --- a/tg/tl_input_file_location_slices_gen.go +++ b/tg/tl_input_file_location_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_file_slices_gen.go b/tg/tl_input_file_slices_gen.go index de7c92c955..ef4d8d2e85 100644 --- a/tg/tl_input_file_slices_gen.go +++ b/tg/tl_input_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_folder_peer_gen.go b/tg/tl_input_folder_peer_gen.go index 991002999f..ec938cae62 100644 --- a/tg/tl_input_folder_peer_gen.go +++ b/tg/tl_input_folder_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_folder_peer_slices_gen.go b/tg/tl_input_folder_peer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_folder_peer_slices_gen.go +++ b/tg/tl_input_folder_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_game_gen.go b/tg/tl_input_game_gen.go index 9a40303d2b..2db1e3adb1 100644 --- a/tg/tl_input_game_gen.go +++ b/tg/tl_input_game_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_game_slices_gen.go b/tg/tl_input_game_slices_gen.go index 94945163da..268a70ad42 100644 --- a/tg/tl_input_game_slices_gen.go +++ b/tg/tl_input_game_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_geo_point_gen.go b/tg/tl_input_geo_point_gen.go index 771bd28fca..287e79f7e1 100644 --- a/tg/tl_input_geo_point_gen.go +++ b/tg/tl_input_geo_point_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_geo_point_slices_gen.go b/tg/tl_input_geo_point_slices_gen.go index c0bbc4a321..bf1ac656de 100644 --- a/tg/tl_input_geo_point_slices_gen.go +++ b/tg/tl_input_geo_point_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_group_call_gen.go b/tg/tl_input_group_call_gen.go index 634fa28298..96c522c3e3 100644 --- a/tg/tl_input_group_call_gen.go +++ b/tg/tl_input_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_group_call_slices_gen.go b/tg/tl_input_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_group_call_slices_gen.go +++ b/tg/tl_input_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_invoice_gen.go b/tg/tl_input_invoice_gen.go index 4a3cfd87de..fb3aea9f3c 100644 --- a/tg/tl_input_invoice_gen.go +++ b/tg/tl_input_invoice_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_invoice_slices_gen.go b/tg/tl_input_invoice_slices_gen.go index 2c74bd9b54..a8eae41712 100644 --- a/tg/tl_input_invoice_slices_gen.go +++ b/tg/tl_input_invoice_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_media_gen.go b/tg/tl_input_media_gen.go index 9803bf3665..c8e4ed36e3 100644 --- a/tg/tl_input_media_gen.go +++ b/tg/tl_input_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_media_slices_gen.go b/tg/tl_input_media_slices_gen.go index add9a83a6b..1a67d6045c 100644 --- a/tg/tl_input_media_slices_gen.go +++ b/tg/tl_input_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_message_gen.go b/tg/tl_input_message_gen.go index 81f176f9cf..9b2e1c1543 100644 --- a/tg/tl_input_message_gen.go +++ b/tg/tl_input_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_message_slices_gen.go b/tg/tl_input_message_slices_gen.go index 9e32f86246..b11a89e63a 100644 --- a/tg/tl_input_message_slices_gen.go +++ b/tg/tl_input_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_notify_peer_gen.go b/tg/tl_input_notify_peer_gen.go index ab5fda6f57..965b1da7e8 100644 --- a/tg/tl_input_notify_peer_gen.go +++ b/tg/tl_input_notify_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_notify_peer_slices_gen.go b/tg/tl_input_notify_peer_slices_gen.go index 4736e424fd..0c66d2405f 100644 --- a/tg/tl_input_notify_peer_slices_gen.go +++ b/tg/tl_input_notify_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_payment_credentials_gen.go b/tg/tl_input_payment_credentials_gen.go index 934f1ec7b3..dc3cbd959b 100644 --- a/tg/tl_input_payment_credentials_gen.go +++ b/tg/tl_input_payment_credentials_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_payment_credentials_slices_gen.go b/tg/tl_input_payment_credentials_slices_gen.go index 1502e7b212..ba7be5fd35 100644 --- a/tg/tl_input_payment_credentials_slices_gen.go +++ b/tg/tl_input_payment_credentials_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_peer_gen.go b/tg/tl_input_peer_gen.go index 00c16b8e4b..ff5b7633f2 100644 --- a/tg/tl_input_peer_gen.go +++ b/tg/tl_input_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_peer_notify_settings_gen.go b/tg/tl_input_peer_notify_settings_gen.go index f62a61e5b2..d880c45381 100644 --- a/tg/tl_input_peer_notify_settings_gen.go +++ b/tg/tl_input_peer_notify_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_peer_notify_settings_slices_gen.go b/tg/tl_input_peer_notify_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_peer_notify_settings_slices_gen.go +++ b/tg/tl_input_peer_notify_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_peer_slices_gen.go b/tg/tl_input_peer_slices_gen.go index b739d6e235..8fca60a1ef 100644 --- a/tg/tl_input_peer_slices_gen.go +++ b/tg/tl_input_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_phone_call_gen.go b/tg/tl_input_phone_call_gen.go index 5ffb4ad8f4..5dd76630cf 100644 --- a/tg/tl_input_phone_call_gen.go +++ b/tg/tl_input_phone_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_phone_call_slices_gen.go b/tg/tl_input_phone_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_phone_call_slices_gen.go +++ b/tg/tl_input_phone_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_phone_contact_gen.go b/tg/tl_input_phone_contact_gen.go index 30632f6377..d3cdb124a0 100644 --- a/tg/tl_input_phone_contact_gen.go +++ b/tg/tl_input_phone_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_phone_contact_slices_gen.go b/tg/tl_input_phone_contact_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_phone_contact_slices_gen.go +++ b/tg/tl_input_phone_contact_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_photo_gen.go b/tg/tl_input_photo_gen.go index 98d93d0573..f5d20dc0be 100644 --- a/tg/tl_input_photo_gen.go +++ b/tg/tl_input_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_photo_slices_gen.go b/tg/tl_input_photo_slices_gen.go index 7ba8ef28f2..7cd28b1401 100644 --- a/tg/tl_input_photo_slices_gen.go +++ b/tg/tl_input_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_privacy_key_gen.go b/tg/tl_input_privacy_key_gen.go index 7b042f976e..eedf31ed18 100644 --- a/tg/tl_input_privacy_key_gen.go +++ b/tg/tl_input_privacy_key_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_privacy_key_slices_gen.go b/tg/tl_input_privacy_key_slices_gen.go index fe1f4c2a71..33d49aa19e 100644 --- a/tg/tl_input_privacy_key_slices_gen.go +++ b/tg/tl_input_privacy_key_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_privacy_rule_gen.go b/tg/tl_input_privacy_rule_gen.go index 67bc189015..d0f5836199 100644 --- a/tg/tl_input_privacy_rule_gen.go +++ b/tg/tl_input_privacy_rule_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_privacy_rule_slices_gen.go b/tg/tl_input_privacy_rule_slices_gen.go index 4d116b4536..74ddcb8974 100644 --- a/tg/tl_input_privacy_rule_slices_gen.go +++ b/tg/tl_input_privacy_rule_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_quick_reply_shortcut_gen.go b/tg/tl_input_quick_reply_shortcut_gen.go index cc0eccd056..a54ab0c384 100644 --- a/tg/tl_input_quick_reply_shortcut_gen.go +++ b/tg/tl_input_quick_reply_shortcut_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_quick_reply_shortcut_slices_gen.go b/tg/tl_input_quick_reply_shortcut_slices_gen.go index edca46f512..8387298ead 100644 --- a/tg/tl_input_quick_reply_shortcut_slices_gen.go +++ b/tg/tl_input_quick_reply_shortcut_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_reply_to_gen.go b/tg/tl_input_reply_to_gen.go index 31c15a4282..ad36dc0593 100644 --- a/tg/tl_input_reply_to_gen.go +++ b/tg/tl_input_reply_to_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_reply_to_slices_gen.go b/tg/tl_input_reply_to_slices_gen.go index ed8e013d87..1f3c05fab3 100644 --- a/tg/tl_input_reply_to_slices_gen.go +++ b/tg/tl_input_reply_to_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_secure_file_gen.go b/tg/tl_input_secure_file_gen.go index 9b7755efeb..479e843204 100644 --- a/tg/tl_input_secure_file_gen.go +++ b/tg/tl_input_secure_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_secure_file_slices_gen.go b/tg/tl_input_secure_file_slices_gen.go index e4b681b9d7..1e2ace9df6 100644 --- a/tg/tl_input_secure_file_slices_gen.go +++ b/tg/tl_input_secure_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_secure_value_gen.go b/tg/tl_input_secure_value_gen.go index 9c83a3a307..ef39df940d 100644 --- a/tg/tl_input_secure_value_gen.go +++ b/tg/tl_input_secure_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_secure_value_slices_gen.go b/tg/tl_input_secure_value_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_secure_value_slices_gen.go +++ b/tg/tl_input_secure_value_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_single_media_gen.go b/tg/tl_input_single_media_gen.go index b4d9996347..56bc720e67 100644 --- a/tg/tl_input_single_media_gen.go +++ b/tg/tl_input_single_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_single_media_slices_gen.go b/tg/tl_input_single_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_single_media_slices_gen.go +++ b/tg/tl_input_single_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_stars_transaction_gen.go b/tg/tl_input_stars_transaction_gen.go index bfc2c941b8..71555657e4 100644 --- a/tg/tl_input_stars_transaction_gen.go +++ b/tg/tl_input_stars_transaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_stars_transaction_slices_gen.go b/tg/tl_input_stars_transaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_stars_transaction_slices_gen.go +++ b/tg/tl_input_stars_transaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_sticker_set_gen.go b/tg/tl_input_sticker_set_gen.go index 87448b8102..60040a03b8 100644 --- a/tg/tl_input_sticker_set_gen.go +++ b/tg/tl_input_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_sticker_set_item_gen.go b/tg/tl_input_sticker_set_item_gen.go index c2982a3da9..43db71563b 100644 --- a/tg/tl_input_sticker_set_item_gen.go +++ b/tg/tl_input_sticker_set_item_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_sticker_set_item_slices_gen.go b/tg/tl_input_sticker_set_item_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_sticker_set_item_slices_gen.go +++ b/tg/tl_input_sticker_set_item_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_sticker_set_slices_gen.go b/tg/tl_input_sticker_set_slices_gen.go index 031147b2ff..cf7171acd4 100644 --- a/tg/tl_input_sticker_set_slices_gen.go +++ b/tg/tl_input_sticker_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_stickered_media_gen.go b/tg/tl_input_stickered_media_gen.go index 609a3f33ae..9acf8bf7ef 100644 --- a/tg/tl_input_stickered_media_gen.go +++ b/tg/tl_input_stickered_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_stickered_media_slices_gen.go b/tg/tl_input_stickered_media_slices_gen.go index 63996f6168..e834964d12 100644 --- a/tg/tl_input_stickered_media_slices_gen.go +++ b/tg/tl_input_stickered_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_store_payment_purpose_gen.go b/tg/tl_input_store_payment_purpose_gen.go index dbe17ad3f7..5376a6848d 100644 --- a/tg/tl_input_store_payment_purpose_gen.go +++ b/tg/tl_input_store_payment_purpose_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_store_payment_purpose_slices_gen.go b/tg/tl_input_store_payment_purpose_slices_gen.go index 9cdfebe764..868280aae6 100644 --- a/tg/tl_input_store_payment_purpose_slices_gen.go +++ b/tg/tl_input_store_payment_purpose_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_theme_gen.go b/tg/tl_input_theme_gen.go index 36f71d7ded..f702b29c8c 100644 --- a/tg/tl_input_theme_gen.go +++ b/tg/tl_input_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_theme_settings_gen.go b/tg/tl_input_theme_settings_gen.go index df2df73b63..28e0d92fc8 100644 --- a/tg/tl_input_theme_settings_gen.go +++ b/tg/tl_input_theme_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_theme_settings_slices_gen.go b/tg/tl_input_theme_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_theme_settings_slices_gen.go +++ b/tg/tl_input_theme_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_theme_slices_gen.go b/tg/tl_input_theme_slices_gen.go index 0b496dae96..14009099a3 100644 --- a/tg/tl_input_theme_slices_gen.go +++ b/tg/tl_input_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_user_gen.go b/tg/tl_input_user_gen.go index b13d020e98..6e52b20537 100644 --- a/tg/tl_input_user_gen.go +++ b/tg/tl_input_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_user_slices_gen.go b/tg/tl_input_user_slices_gen.go index 4a8be1bf84..6e3562ddbc 100644 --- a/tg/tl_input_user_slices_gen.go +++ b/tg/tl_input_user_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_wall_paper_gen.go b/tg/tl_input_wall_paper_gen.go index fac353e1bb..57fe05b3c5 100644 --- a/tg/tl_input_wall_paper_gen.go +++ b/tg/tl_input_wall_paper_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_wall_paper_slices_gen.go b/tg/tl_input_wall_paper_slices_gen.go index 2b8be057bd..82176dcf4c 100644 --- a/tg/tl_input_wall_paper_slices_gen.go +++ b/tg/tl_input_wall_paper_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_web_document_gen.go b/tg/tl_input_web_document_gen.go index 428cfefd67..6938d3661e 100644 --- a/tg/tl_input_web_document_gen.go +++ b/tg/tl_input_web_document_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_web_document_slices_gen.go b/tg/tl_input_web_document_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_input_web_document_slices_gen.go +++ b/tg/tl_input_web_document_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_web_file_location_gen.go b/tg/tl_input_web_file_location_gen.go index e6d01c81b5..dd6c8a2056 100644 --- a/tg/tl_input_web_file_location_gen.go +++ b/tg/tl_input_web_file_location_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_input_web_file_location_slices_gen.go b/tg/tl_input_web_file_location_slices_gen.go index f61813c763..a552a5ea9f 100644 --- a/tg/tl_input_web_file_location_slices_gen.go +++ b/tg/tl_input_web_file_location_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_int_gen.go b/tg/tl_int_gen.go index 4feb72a208..aca41d26c1 100644 --- a/tg/tl_int_gen.go +++ b/tg/tl_int_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_int_slices_gen.go b/tg/tl_int_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_int_slices_gen.go +++ b/tg/tl_int_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_int_vector_gen.go b/tg/tl_int_vector_gen.go index d5ec938fb5..75aa160835 100644 --- a/tg/tl_int_vector_gen.go +++ b/tg/tl_int_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_int_vector_slices_gen.go b/tg/tl_int_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_int_vector_slices_gen.go +++ b/tg/tl_int_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoice_gen.go b/tg/tl_invoice_gen.go index 28e45f8b5b..2a0d9326b7 100644 --- a/tg/tl_invoice_gen.go +++ b/tg/tl_invoice_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoice_slices_gen.go b/tg/tl_invoice_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoice_slices_gen.go +++ b/tg/tl_invoice_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_after_msg_gen.go b/tg/tl_invoke_after_msg_gen.go index 3037791ad4..a6d33a5555 100644 --- a/tg/tl_invoke_after_msg_gen.go +++ b/tg/tl_invoke_after_msg_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_after_msg_slices_gen.go b/tg/tl_invoke_after_msg_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoke_after_msg_slices_gen.go +++ b/tg/tl_invoke_after_msg_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_after_msgs_gen.go b/tg/tl_invoke_after_msgs_gen.go index 46e39b52dc..f75fc972ab 100644 --- a/tg/tl_invoke_after_msgs_gen.go +++ b/tg/tl_invoke_after_msgs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_after_msgs_slices_gen.go b/tg/tl_invoke_after_msgs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoke_after_msgs_slices_gen.go +++ b/tg/tl_invoke_after_msgs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_apns_secret_gen.go b/tg/tl_invoke_with_apns_secret_gen.go index c84a93bd19..8d92d4ff93 100644 --- a/tg/tl_invoke_with_apns_secret_gen.go +++ b/tg/tl_invoke_with_apns_secret_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_apns_secret_slices_gen.go b/tg/tl_invoke_with_apns_secret_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoke_with_apns_secret_slices_gen.go +++ b/tg/tl_invoke_with_apns_secret_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_business_connection_gen.go b/tg/tl_invoke_with_business_connection_gen.go index c85475d7a9..7c847c9248 100644 --- a/tg/tl_invoke_with_business_connection_gen.go +++ b/tg/tl_invoke_with_business_connection_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_business_connection_slices_gen.go b/tg/tl_invoke_with_business_connection_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoke_with_business_connection_slices_gen.go +++ b/tg/tl_invoke_with_business_connection_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_google_play_integrity_gen.go b/tg/tl_invoke_with_google_play_integrity_gen.go index 2fe76d87e4..e338c404fc 100644 --- a/tg/tl_invoke_with_google_play_integrity_gen.go +++ b/tg/tl_invoke_with_google_play_integrity_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_google_play_integrity_slices_gen.go b/tg/tl_invoke_with_google_play_integrity_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoke_with_google_play_integrity_slices_gen.go +++ b/tg/tl_invoke_with_google_play_integrity_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_layer_gen.go b/tg/tl_invoke_with_layer_gen.go index 7891c782a2..f61a92a599 100644 --- a/tg/tl_invoke_with_layer_gen.go +++ b/tg/tl_invoke_with_layer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_layer_slices_gen.go b/tg/tl_invoke_with_layer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoke_with_layer_slices_gen.go +++ b/tg/tl_invoke_with_layer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_messages_range_gen.go b/tg/tl_invoke_with_messages_range_gen.go index 94dee6f2cc..44e8a9ba3f 100644 --- a/tg/tl_invoke_with_messages_range_gen.go +++ b/tg/tl_invoke_with_messages_range_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_messages_range_slices_gen.go b/tg/tl_invoke_with_messages_range_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoke_with_messages_range_slices_gen.go +++ b/tg/tl_invoke_with_messages_range_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_takeout_gen.go b/tg/tl_invoke_with_takeout_gen.go index cac5ed377c..ae66b01c16 100644 --- a/tg/tl_invoke_with_takeout_gen.go +++ b/tg/tl_invoke_with_takeout_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_with_takeout_slices_gen.go b/tg/tl_invoke_with_takeout_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoke_with_takeout_slices_gen.go +++ b/tg/tl_invoke_with_takeout_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_without_updates_gen.go b/tg/tl_invoke_without_updates_gen.go index 4431ebe668..b95c574f80 100644 --- a/tg/tl_invoke_without_updates_gen.go +++ b/tg/tl_invoke_without_updates_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_invoke_without_updates_slices_gen.go b/tg/tl_invoke_without_updates_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_invoke_without_updates_slices_gen.go +++ b/tg/tl_invoke_without_updates_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_ip_port_gen.go b/tg/tl_ip_port_gen.go index 8308b282a6..677b2b28fb 100644 --- a/tg/tl_ip_port_gen.go +++ b/tg/tl_ip_port_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_ip_port_slices_gen.go b/tg/tl_ip_port_slices_gen.go index 2db2d7cd51..4b2133070f 100644 --- a/tg/tl_ip_port_slices_gen.go +++ b/tg/tl_ip_port_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_json_object_value_gen.go b/tg/tl_json_object_value_gen.go index 0d9ac55d9a..26bc04b1e4 100644 --- a/tg/tl_json_object_value_gen.go +++ b/tg/tl_json_object_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_json_object_value_slices_gen.go b/tg/tl_json_object_value_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_json_object_value_slices_gen.go +++ b/tg/tl_json_object_value_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_json_value_gen.go b/tg/tl_json_value_gen.go index 6a4edec423..96adfe35cb 100644 --- a/tg/tl_json_value_gen.go +++ b/tg/tl_json_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_json_value_slices_gen.go b/tg/tl_json_value_slices_gen.go index f832798288..7b63fd7f70 100644 --- a/tg/tl_json_value_slices_gen.go +++ b/tg/tl_json_value_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_keyboard_button_gen.go b/tg/tl_keyboard_button_gen.go index fb426c8701..9b547be914 100644 --- a/tg/tl_keyboard_button_gen.go +++ b/tg/tl_keyboard_button_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_keyboard_button_row_gen.go b/tg/tl_keyboard_button_row_gen.go index 987d076e43..f1ee609b70 100644 --- a/tg/tl_keyboard_button_row_gen.go +++ b/tg/tl_keyboard_button_row_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_keyboard_button_row_slices_gen.go b/tg/tl_keyboard_button_row_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_keyboard_button_row_slices_gen.go +++ b/tg/tl_keyboard_button_row_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_keyboard_button_slices_gen.go b/tg/tl_keyboard_button_slices_gen.go index 3f83ff131b..87864d1928 100644 --- a/tg/tl_keyboard_button_slices_gen.go +++ b/tg/tl_keyboard_button_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_labeled_price_gen.go b/tg/tl_labeled_price_gen.go index 6e080bcc50..248acc4bdf 100644 --- a/tg/tl_labeled_price_gen.go +++ b/tg/tl_labeled_price_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_labeled_price_slices_gen.go b/tg/tl_labeled_price_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_labeled_price_slices_gen.go +++ b/tg/tl_labeled_price_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_difference_gen.go b/tg/tl_lang_pack_difference_gen.go index 53f0c9196d..dca4f2c601 100644 --- a/tg/tl_lang_pack_difference_gen.go +++ b/tg/tl_lang_pack_difference_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_difference_slices_gen.go b/tg/tl_lang_pack_difference_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_lang_pack_difference_slices_gen.go +++ b/tg/tl_lang_pack_difference_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_language_gen.go b/tg/tl_lang_pack_language_gen.go index 5d6ff7d9ac..9016d6bc51 100644 --- a/tg/tl_lang_pack_language_gen.go +++ b/tg/tl_lang_pack_language_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_language_slices_gen.go b/tg/tl_lang_pack_language_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_lang_pack_language_slices_gen.go +++ b/tg/tl_lang_pack_language_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_language_vector_gen.go b/tg/tl_lang_pack_language_vector_gen.go index 9827d931a1..1e2d8050b9 100644 --- a/tg/tl_lang_pack_language_vector_gen.go +++ b/tg/tl_lang_pack_language_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_language_vector_slices_gen.go b/tg/tl_lang_pack_language_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_lang_pack_language_vector_slices_gen.go +++ b/tg/tl_lang_pack_language_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_string_class_vector_gen.go b/tg/tl_lang_pack_string_class_vector_gen.go index c389812005..17232e3cc3 100644 --- a/tg/tl_lang_pack_string_class_vector_gen.go +++ b/tg/tl_lang_pack_string_class_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_string_class_vector_slices_gen.go b/tg/tl_lang_pack_string_class_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_lang_pack_string_class_vector_slices_gen.go +++ b/tg/tl_lang_pack_string_class_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_string_gen.go b/tg/tl_lang_pack_string_gen.go index c5e0f33748..a4df6b771c 100644 --- a/tg/tl_lang_pack_string_gen.go +++ b/tg/tl_lang_pack_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_lang_pack_string_slices_gen.go b/tg/tl_lang_pack_string_slices_gen.go index d55b2b875e..cd32231107 100644 --- a/tg/tl_lang_pack_string_slices_gen.go +++ b/tg/tl_lang_pack_string_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_difference_gen.go b/tg/tl_langpack_get_difference_gen.go index 150820fb13..7378f55fd5 100644 --- a/tg/tl_langpack_get_difference_gen.go +++ b/tg/tl_langpack_get_difference_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_difference_slices_gen.go b/tg/tl_langpack_get_difference_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_langpack_get_difference_slices_gen.go +++ b/tg/tl_langpack_get_difference_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_lang_pack_gen.go b/tg/tl_langpack_get_lang_pack_gen.go index cf19a99692..860c583f37 100644 --- a/tg/tl_langpack_get_lang_pack_gen.go +++ b/tg/tl_langpack_get_lang_pack_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_lang_pack_slices_gen.go b/tg/tl_langpack_get_lang_pack_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_langpack_get_lang_pack_slices_gen.go +++ b/tg/tl_langpack_get_lang_pack_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_language_gen.go b/tg/tl_langpack_get_language_gen.go index e6ba2dd247..c10c494c66 100644 --- a/tg/tl_langpack_get_language_gen.go +++ b/tg/tl_langpack_get_language_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_language_slices_gen.go b/tg/tl_langpack_get_language_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_langpack_get_language_slices_gen.go +++ b/tg/tl_langpack_get_language_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_languages_gen.go b/tg/tl_langpack_get_languages_gen.go index 3bd01f18b6..36ac84e6da 100644 --- a/tg/tl_langpack_get_languages_gen.go +++ b/tg/tl_langpack_get_languages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_languages_slices_gen.go b/tg/tl_langpack_get_languages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_langpack_get_languages_slices_gen.go +++ b/tg/tl_langpack_get_languages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_strings_gen.go b/tg/tl_langpack_get_strings_gen.go index a0bea3b8bf..963a6e78b4 100644 --- a/tg/tl_langpack_get_strings_gen.go +++ b/tg/tl_langpack_get_strings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_langpack_get_strings_slices_gen.go b/tg/tl_langpack_get_strings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_langpack_get_strings_slices_gen.go +++ b/tg/tl_langpack_get_strings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_long_gen.go b/tg/tl_long_gen.go index 6ba129e9f8..a0499d3aa4 100644 --- a/tg/tl_long_gen.go +++ b/tg/tl_long_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_long_slices_gen.go b/tg/tl_long_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_long_slices_gen.go +++ b/tg/tl_long_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_long_vector_gen.go b/tg/tl_long_vector_gen.go index 5cfff00e05..2e0b54464e 100644 --- a/tg/tl_long_vector_gen.go +++ b/tg/tl_long_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_long_vector_slices_gen.go b/tg/tl_long_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_long_vector_slices_gen.go +++ b/tg/tl_long_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_mask_coords_gen.go b/tg/tl_mask_coords_gen.go index e92a13b408..ac67cfbc55 100644 --- a/tg/tl_mask_coords_gen.go +++ b/tg/tl_mask_coords_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_mask_coords_slices_gen.go b/tg/tl_mask_coords_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_mask_coords_slices_gen.go +++ b/tg/tl_mask_coords_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_media_area_coordinates_gen.go b/tg/tl_media_area_coordinates_gen.go index a3ba8b642c..893c7122e4 100644 --- a/tg/tl_media_area_coordinates_gen.go +++ b/tg/tl_media_area_coordinates_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_media_area_coordinates_slices_gen.go b/tg/tl_media_area_coordinates_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_media_area_coordinates_slices_gen.go +++ b/tg/tl_media_area_coordinates_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_media_area_gen.go b/tg/tl_media_area_gen.go index d77d399e12..66f4fdd23d 100644 --- a/tg/tl_media_area_gen.go +++ b/tg/tl_media_area_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_media_area_slices_gen.go b/tg/tl_media_area_slices_gen.go index 13dfa06f74..f71c3be452 100644 --- a/tg/tl_media_area_slices_gen.go +++ b/tg/tl_media_area_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_action_gen.go b/tg/tl_message_action_gen.go index ea9583e2be..2babfafa1c 100644 --- a/tg/tl_message_action_gen.go +++ b/tg/tl_message_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_action_slices_gen.go b/tg/tl_message_action_slices_gen.go index 834750fa94..9ef03828ae 100644 --- a/tg/tl_message_action_slices_gen.go +++ b/tg/tl_message_action_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_entity_gen.go b/tg/tl_message_entity_gen.go index 254c18d640..9b4053c3d1 100644 --- a/tg/tl_message_entity_gen.go +++ b/tg/tl_message_entity_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_entity_slices_gen.go b/tg/tl_message_entity_slices_gen.go index e08d3d7e2a..ba020c80d1 100644 --- a/tg/tl_message_entity_slices_gen.go +++ b/tg/tl_message_entity_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_extended_media_gen.go b/tg/tl_message_extended_media_gen.go index 130300fa52..7b675d3e44 100644 --- a/tg/tl_message_extended_media_gen.go +++ b/tg/tl_message_extended_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_extended_media_slices_gen.go b/tg/tl_message_extended_media_slices_gen.go index 6cb8177212..5989ccbf61 100644 --- a/tg/tl_message_extended_media_slices_gen.go +++ b/tg/tl_message_extended_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_fwd_header_gen.go b/tg/tl_message_fwd_header_gen.go index 8b82349e1d..4a6f0137fa 100644 --- a/tg/tl_message_fwd_header_gen.go +++ b/tg/tl_message_fwd_header_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_fwd_header_slices_gen.go b/tg/tl_message_fwd_header_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_message_fwd_header_slices_gen.go +++ b/tg/tl_message_fwd_header_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_gen.go b/tg/tl_message_gen.go index 7bcc4cc5fc..da28f4376c 100644 --- a/tg/tl_message_gen.go +++ b/tg/tl_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_media_gen.go b/tg/tl_message_media_gen.go index 9ff04670d2..bcdd33637c 100644 --- a/tg/tl_message_media_gen.go +++ b/tg/tl_message_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_media_slices_gen.go b/tg/tl_message_media_slices_gen.go index 06627f62ee..45e0bee32c 100644 --- a/tg/tl_message_media_slices_gen.go +++ b/tg/tl_message_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_peer_reaction_gen.go b/tg/tl_message_peer_reaction_gen.go index 86405a77c3..73121984c6 100644 --- a/tg/tl_message_peer_reaction_gen.go +++ b/tg/tl_message_peer_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_peer_reaction_slices_gen.go b/tg/tl_message_peer_reaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_message_peer_reaction_slices_gen.go +++ b/tg/tl_message_peer_reaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_peer_vote_gen.go b/tg/tl_message_peer_vote_gen.go index 9e2b85ee14..7a593235e5 100644 --- a/tg/tl_message_peer_vote_gen.go +++ b/tg/tl_message_peer_vote_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_peer_vote_slices_gen.go b/tg/tl_message_peer_vote_slices_gen.go index 1595878541..64dcdb9c6f 100644 --- a/tg/tl_message_peer_vote_slices_gen.go +++ b/tg/tl_message_peer_vote_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_range_gen.go b/tg/tl_message_range_gen.go index 1a59286596..b0bdc700a5 100644 --- a/tg/tl_message_range_gen.go +++ b/tg/tl_message_range_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_range_slices_gen.go b/tg/tl_message_range_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_message_range_slices_gen.go +++ b/tg/tl_message_range_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_range_vector_gen.go b/tg/tl_message_range_vector_gen.go index bff3795602..bc1ff31c26 100644 --- a/tg/tl_message_range_vector_gen.go +++ b/tg/tl_message_range_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_range_vector_slices_gen.go b/tg/tl_message_range_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_message_range_vector_slices_gen.go +++ b/tg/tl_message_range_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_reactions_gen.go b/tg/tl_message_reactions_gen.go index 2784470682..91b51077bc 100644 --- a/tg/tl_message_reactions_gen.go +++ b/tg/tl_message_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_reactions_slices_gen.go b/tg/tl_message_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_message_reactions_slices_gen.go +++ b/tg/tl_message_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_reactor_gen.go b/tg/tl_message_reactor_gen.go index d60978d81a..d779dc5654 100644 --- a/tg/tl_message_reactor_gen.go +++ b/tg/tl_message_reactor_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_reactor_slices_gen.go b/tg/tl_message_reactor_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_message_reactor_slices_gen.go +++ b/tg/tl_message_reactor_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_replies_gen.go b/tg/tl_message_replies_gen.go index 2d73edfe93..9ba7056b00 100644 --- a/tg/tl_message_replies_gen.go +++ b/tg/tl_message_replies_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_replies_slices_gen.go b/tg/tl_message_replies_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_message_replies_slices_gen.go +++ b/tg/tl_message_replies_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_reply_header_gen.go b/tg/tl_message_reply_header_gen.go index b24a14deb3..392a927e29 100644 --- a/tg/tl_message_reply_header_gen.go +++ b/tg/tl_message_reply_header_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_reply_header_slices_gen.go b/tg/tl_message_reply_header_slices_gen.go index 25c78165b6..bcd2170c20 100644 --- a/tg/tl_message_reply_header_slices_gen.go +++ b/tg/tl_message_reply_header_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_report_option_gen.go b/tg/tl_message_report_option_gen.go index f852405118..7e37eba6ae 100644 --- a/tg/tl_message_report_option_gen.go +++ b/tg/tl_message_report_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_report_option_slices_gen.go b/tg/tl_message_report_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_message_report_option_slices_gen.go +++ b/tg/tl_message_report_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_slices_gen.go b/tg/tl_message_slices_gen.go index 0fcd7b7ac3..4cd22f52b5 100644 --- a/tg/tl_message_slices_gen.go +++ b/tg/tl_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_views_gen.go b/tg/tl_message_views_gen.go index 05de5783c0..e4e1d00ff0 100644 --- a/tg/tl_message_views_gen.go +++ b/tg/tl_message_views_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_message_views_slices_gen.go b/tg/tl_message_views_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_message_views_slices_gen.go +++ b/tg/tl_message_views_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_accept_encryption_gen.go b/tg/tl_messages_accept_encryption_gen.go index 5baab93c2e..80900dd1c5 100644 --- a/tg/tl_messages_accept_encryption_gen.go +++ b/tg/tl_messages_accept_encryption_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_accept_encryption_slices_gen.go b/tg/tl_messages_accept_encryption_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_accept_encryption_slices_gen.go +++ b/tg/tl_messages_accept_encryption_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_accept_url_auth_gen.go b/tg/tl_messages_accept_url_auth_gen.go index d10a4b369f..9b19401ee0 100644 --- a/tg/tl_messages_accept_url_auth_gen.go +++ b/tg/tl_messages_accept_url_auth_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_accept_url_auth_slices_gen.go b/tg/tl_messages_accept_url_auth_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_accept_url_auth_slices_gen.go +++ b/tg/tl_messages_accept_url_auth_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_add_chat_user_gen.go b/tg/tl_messages_add_chat_user_gen.go index 1762132989..30bf8f1295 100644 --- a/tg/tl_messages_add_chat_user_gen.go +++ b/tg/tl_messages_add_chat_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_add_chat_user_slices_gen.go b/tg/tl_messages_add_chat_user_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_add_chat_user_slices_gen.go +++ b/tg/tl_messages_add_chat_user_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_affected_found_messages_gen.go b/tg/tl_messages_affected_found_messages_gen.go index 575f60e4e7..2ea68ebc39 100644 --- a/tg/tl_messages_affected_found_messages_gen.go +++ b/tg/tl_messages_affected_found_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_affected_found_messages_slices_gen.go b/tg/tl_messages_affected_found_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_affected_found_messages_slices_gen.go +++ b/tg/tl_messages_affected_found_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_affected_history_gen.go b/tg/tl_messages_affected_history_gen.go index 9de0cfb869..f0ba13bb0c 100644 --- a/tg/tl_messages_affected_history_gen.go +++ b/tg/tl_messages_affected_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_affected_history_slices_gen.go b/tg/tl_messages_affected_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_affected_history_slices_gen.go +++ b/tg/tl_messages_affected_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_affected_messages_gen.go b/tg/tl_messages_affected_messages_gen.go index eb78cf7700..9aec6b951e 100644 --- a/tg/tl_messages_affected_messages_gen.go +++ b/tg/tl_messages_affected_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_affected_messages_slices_gen.go b/tg/tl_messages_affected_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_affected_messages_slices_gen.go +++ b/tg/tl_messages_affected_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_all_stickers_gen.go b/tg/tl_messages_all_stickers_gen.go index 91fcfd1a24..0551cad258 100644 --- a/tg/tl_messages_all_stickers_gen.go +++ b/tg/tl_messages_all_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_all_stickers_slices_gen.go b/tg/tl_messages_all_stickers_slices_gen.go index 8266fe5287..012184d45f 100644 --- a/tg/tl_messages_all_stickers_slices_gen.go +++ b/tg/tl_messages_all_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_archived_stickers_gen.go b/tg/tl_messages_archived_stickers_gen.go index 42311fe717..9466076144 100644 --- a/tg/tl_messages_archived_stickers_gen.go +++ b/tg/tl_messages_archived_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_archived_stickers_slices_gen.go b/tg/tl_messages_archived_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_archived_stickers_slices_gen.go +++ b/tg/tl_messages_archived_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_available_effects_gen.go b/tg/tl_messages_available_effects_gen.go index 7e6a18c389..2fdfac927c 100644 --- a/tg/tl_messages_available_effects_gen.go +++ b/tg/tl_messages_available_effects_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_available_effects_slices_gen.go b/tg/tl_messages_available_effects_slices_gen.go index 0aaf443690..c655950612 100644 --- a/tg/tl_messages_available_effects_slices_gen.go +++ b/tg/tl_messages_available_effects_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_available_reactions_gen.go b/tg/tl_messages_available_reactions_gen.go index a051140bd6..b39047c3a4 100644 --- a/tg/tl_messages_available_reactions_gen.go +++ b/tg/tl_messages_available_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_available_reactions_slices_gen.go b/tg/tl_messages_available_reactions_slices_gen.go index 7546ae14c3..7844bca0df 100644 --- a/tg/tl_messages_available_reactions_slices_gen.go +++ b/tg/tl_messages_available_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_bot_app_gen.go b/tg/tl_messages_bot_app_gen.go index 57afd1c6c5..b440cdaffc 100644 --- a/tg/tl_messages_bot_app_gen.go +++ b/tg/tl_messages_bot_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_bot_app_slices_gen.go b/tg/tl_messages_bot_app_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_bot_app_slices_gen.go +++ b/tg/tl_messages_bot_app_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_bot_callback_answer_gen.go b/tg/tl_messages_bot_callback_answer_gen.go index 86c9f47c39..45069a7007 100644 --- a/tg/tl_messages_bot_callback_answer_gen.go +++ b/tg/tl_messages_bot_callback_answer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_bot_callback_answer_slices_gen.go b/tg/tl_messages_bot_callback_answer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_bot_callback_answer_slices_gen.go +++ b/tg/tl_messages_bot_callback_answer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_bot_prepared_inline_message_gen.go b/tg/tl_messages_bot_prepared_inline_message_gen.go index 9586b02cc4..6892d0c781 100644 --- a/tg/tl_messages_bot_prepared_inline_message_gen.go +++ b/tg/tl_messages_bot_prepared_inline_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_bot_prepared_inline_message_slices_gen.go b/tg/tl_messages_bot_prepared_inline_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_bot_prepared_inline_message_slices_gen.go +++ b/tg/tl_messages_bot_prepared_inline_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_bot_results_gen.go b/tg/tl_messages_bot_results_gen.go index 8faa351631..247b69b0db 100644 --- a/tg/tl_messages_bot_results_gen.go +++ b/tg/tl_messages_bot_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_bot_results_slices_gen.go b/tg/tl_messages_bot_results_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_bot_results_slices_gen.go +++ b/tg/tl_messages_bot_results_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_chat_admins_with_invites_gen.go b/tg/tl_messages_chat_admins_with_invites_gen.go index 4ce6330a91..9062c99862 100644 --- a/tg/tl_messages_chat_admins_with_invites_gen.go +++ b/tg/tl_messages_chat_admins_with_invites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_chat_admins_with_invites_slices_gen.go b/tg/tl_messages_chat_admins_with_invites_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_chat_admins_with_invites_slices_gen.go +++ b/tg/tl_messages_chat_admins_with_invites_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_chat_full_gen.go b/tg/tl_messages_chat_full_gen.go index 7f60b77a30..c73f5c84f3 100644 --- a/tg/tl_messages_chat_full_gen.go +++ b/tg/tl_messages_chat_full_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_chat_full_slices_gen.go b/tg/tl_messages_chat_full_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_chat_full_slices_gen.go +++ b/tg/tl_messages_chat_full_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_chat_invite_importers_gen.go b/tg/tl_messages_chat_invite_importers_gen.go index eb24f07416..40d36d1385 100644 --- a/tg/tl_messages_chat_invite_importers_gen.go +++ b/tg/tl_messages_chat_invite_importers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_chat_invite_importers_slices_gen.go b/tg/tl_messages_chat_invite_importers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_chat_invite_importers_slices_gen.go +++ b/tg/tl_messages_chat_invite_importers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_chats_gen.go b/tg/tl_messages_chats_gen.go index 62a7740e77..52ec4bdfcf 100644 --- a/tg/tl_messages_chats_gen.go +++ b/tg/tl_messages_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_chats_slices_gen.go b/tg/tl_messages_chats_slices_gen.go index 9d615eff84..26f333bb10 100644 --- a/tg/tl_messages_chats_slices_gen.go +++ b/tg/tl_messages_chats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_check_chat_invite_gen.go b/tg/tl_messages_check_chat_invite_gen.go index ea9b50660d..7e40b01383 100644 --- a/tg/tl_messages_check_chat_invite_gen.go +++ b/tg/tl_messages_check_chat_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_check_chat_invite_slices_gen.go b/tg/tl_messages_check_chat_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_check_chat_invite_slices_gen.go +++ b/tg/tl_messages_check_chat_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_check_history_import_gen.go b/tg/tl_messages_check_history_import_gen.go index fa8049ee18..be16e6a22d 100644 --- a/tg/tl_messages_check_history_import_gen.go +++ b/tg/tl_messages_check_history_import_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_check_history_import_peer_gen.go b/tg/tl_messages_check_history_import_peer_gen.go index d7e6ce5586..88d452aee9 100644 --- a/tg/tl_messages_check_history_import_peer_gen.go +++ b/tg/tl_messages_check_history_import_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_check_history_import_peer_slices_gen.go b/tg/tl_messages_check_history_import_peer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_check_history_import_peer_slices_gen.go +++ b/tg/tl_messages_check_history_import_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_check_history_import_slices_gen.go b/tg/tl_messages_check_history_import_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_check_history_import_slices_gen.go +++ b/tg/tl_messages_check_history_import_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_check_quick_reply_shortcut_gen.go b/tg/tl_messages_check_quick_reply_shortcut_gen.go index 85a41f8e26..6707479127 100644 --- a/tg/tl_messages_check_quick_reply_shortcut_gen.go +++ b/tg/tl_messages_check_quick_reply_shortcut_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_check_quick_reply_shortcut_slices_gen.go b/tg/tl_messages_check_quick_reply_shortcut_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_check_quick_reply_shortcut_slices_gen.go +++ b/tg/tl_messages_check_quick_reply_shortcut_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_checked_history_import_peer_gen.go b/tg/tl_messages_checked_history_import_peer_gen.go index 6a9f731463..454d268420 100644 --- a/tg/tl_messages_checked_history_import_peer_gen.go +++ b/tg/tl_messages_checked_history_import_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_checked_history_import_peer_slices_gen.go b/tg/tl_messages_checked_history_import_peer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_checked_history_import_peer_slices_gen.go +++ b/tg/tl_messages_checked_history_import_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_clear_all_drafts_gen.go b/tg/tl_messages_clear_all_drafts_gen.go index 57e4e471ae..f434889010 100644 --- a/tg/tl_messages_clear_all_drafts_gen.go +++ b/tg/tl_messages_clear_all_drafts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_clear_all_drafts_slices_gen.go b/tg/tl_messages_clear_all_drafts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_clear_all_drafts_slices_gen.go +++ b/tg/tl_messages_clear_all_drafts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_clear_recent_reactions_gen.go b/tg/tl_messages_clear_recent_reactions_gen.go index 47aee1d4c8..50b938d238 100644 --- a/tg/tl_messages_clear_recent_reactions_gen.go +++ b/tg/tl_messages_clear_recent_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_clear_recent_reactions_slices_gen.go b/tg/tl_messages_clear_recent_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_clear_recent_reactions_slices_gen.go +++ b/tg/tl_messages_clear_recent_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_clear_recent_stickers_gen.go b/tg/tl_messages_clear_recent_stickers_gen.go index e10bd20a88..f83d2cdcd9 100644 --- a/tg/tl_messages_clear_recent_stickers_gen.go +++ b/tg/tl_messages_clear_recent_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_clear_recent_stickers_slices_gen.go b/tg/tl_messages_clear_recent_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_clear_recent_stickers_slices_gen.go +++ b/tg/tl_messages_clear_recent_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_click_sponsored_message_gen.go b/tg/tl_messages_click_sponsored_message_gen.go index 0494a92a70..e98660e89f 100644 --- a/tg/tl_messages_click_sponsored_message_gen.go +++ b/tg/tl_messages_click_sponsored_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_click_sponsored_message_slices_gen.go b/tg/tl_messages_click_sponsored_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_click_sponsored_message_slices_gen.go +++ b/tg/tl_messages_click_sponsored_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_create_chat_gen.go b/tg/tl_messages_create_chat_gen.go index 0082c6d5b4..f4591e522c 100644 --- a/tg/tl_messages_create_chat_gen.go +++ b/tg/tl_messages_create_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_create_chat_slices_gen.go b/tg/tl_messages_create_chat_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_create_chat_slices_gen.go +++ b/tg/tl_messages_create_chat_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_chat_gen.go b/tg/tl_messages_delete_chat_gen.go index 3dbf032d87..48dce86915 100644 --- a/tg/tl_messages_delete_chat_gen.go +++ b/tg/tl_messages_delete_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_chat_slices_gen.go b/tg/tl_messages_delete_chat_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_chat_slices_gen.go +++ b/tg/tl_messages_delete_chat_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_chat_user_gen.go b/tg/tl_messages_delete_chat_user_gen.go index 54b3d04d24..ed0b86c9ca 100644 --- a/tg/tl_messages_delete_chat_user_gen.go +++ b/tg/tl_messages_delete_chat_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_chat_user_slices_gen.go b/tg/tl_messages_delete_chat_user_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_chat_user_slices_gen.go +++ b/tg/tl_messages_delete_chat_user_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_exported_chat_invite_gen.go b/tg/tl_messages_delete_exported_chat_invite_gen.go index 2a1d5366a6..a981fc6861 100644 --- a/tg/tl_messages_delete_exported_chat_invite_gen.go +++ b/tg/tl_messages_delete_exported_chat_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_exported_chat_invite_slices_gen.go b/tg/tl_messages_delete_exported_chat_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_exported_chat_invite_slices_gen.go +++ b/tg/tl_messages_delete_exported_chat_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_fact_check_gen.go b/tg/tl_messages_delete_fact_check_gen.go index acc73f08e5..a66738e909 100644 --- a/tg/tl_messages_delete_fact_check_gen.go +++ b/tg/tl_messages_delete_fact_check_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_fact_check_slices_gen.go b/tg/tl_messages_delete_fact_check_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_fact_check_slices_gen.go +++ b/tg/tl_messages_delete_fact_check_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_history_gen.go b/tg/tl_messages_delete_history_gen.go index e3aeab0a1a..5c2316d851 100644 --- a/tg/tl_messages_delete_history_gen.go +++ b/tg/tl_messages_delete_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_history_slices_gen.go b/tg/tl_messages_delete_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_history_slices_gen.go +++ b/tg/tl_messages_delete_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_messages_gen.go b/tg/tl_messages_delete_messages_gen.go index bda10e79f2..3a122af6b8 100644 --- a/tg/tl_messages_delete_messages_gen.go +++ b/tg/tl_messages_delete_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_messages_slices_gen.go b/tg/tl_messages_delete_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_messages_slices_gen.go +++ b/tg/tl_messages_delete_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_phone_call_history_gen.go b/tg/tl_messages_delete_phone_call_history_gen.go index 58e4f8ff00..c79b056122 100644 --- a/tg/tl_messages_delete_phone_call_history_gen.go +++ b/tg/tl_messages_delete_phone_call_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_phone_call_history_slices_gen.go b/tg/tl_messages_delete_phone_call_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_phone_call_history_slices_gen.go +++ b/tg/tl_messages_delete_phone_call_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_quick_reply_messages_gen.go b/tg/tl_messages_delete_quick_reply_messages_gen.go index 312feed283..ec0f5dc9a8 100644 --- a/tg/tl_messages_delete_quick_reply_messages_gen.go +++ b/tg/tl_messages_delete_quick_reply_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_quick_reply_messages_slices_gen.go b/tg/tl_messages_delete_quick_reply_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_quick_reply_messages_slices_gen.go +++ b/tg/tl_messages_delete_quick_reply_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_quick_reply_shortcut_gen.go b/tg/tl_messages_delete_quick_reply_shortcut_gen.go index f1ecc8f215..d4ab3dfe49 100644 --- a/tg/tl_messages_delete_quick_reply_shortcut_gen.go +++ b/tg/tl_messages_delete_quick_reply_shortcut_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_quick_reply_shortcut_slices_gen.go b/tg/tl_messages_delete_quick_reply_shortcut_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_quick_reply_shortcut_slices_gen.go +++ b/tg/tl_messages_delete_quick_reply_shortcut_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_revoked_exported_chat_invites_gen.go b/tg/tl_messages_delete_revoked_exported_chat_invites_gen.go index c8912b7cd5..0d88674467 100644 --- a/tg/tl_messages_delete_revoked_exported_chat_invites_gen.go +++ b/tg/tl_messages_delete_revoked_exported_chat_invites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_revoked_exported_chat_invites_slices_gen.go b/tg/tl_messages_delete_revoked_exported_chat_invites_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_revoked_exported_chat_invites_slices_gen.go +++ b/tg/tl_messages_delete_revoked_exported_chat_invites_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_saved_history_gen.go b/tg/tl_messages_delete_saved_history_gen.go index 4ae03192be..c747382958 100644 --- a/tg/tl_messages_delete_saved_history_gen.go +++ b/tg/tl_messages_delete_saved_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_saved_history_slices_gen.go b/tg/tl_messages_delete_saved_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_saved_history_slices_gen.go +++ b/tg/tl_messages_delete_saved_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_scheduled_messages_gen.go b/tg/tl_messages_delete_scheduled_messages_gen.go index 94f2f05ee6..dd0683d6be 100644 --- a/tg/tl_messages_delete_scheduled_messages_gen.go +++ b/tg/tl_messages_delete_scheduled_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_delete_scheduled_messages_slices_gen.go b/tg/tl_messages_delete_scheduled_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_delete_scheduled_messages_slices_gen.go +++ b/tg/tl_messages_delete_scheduled_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_dh_config_gen.go b/tg/tl_messages_dh_config_gen.go index cefbaa25d1..d63b3707f0 100644 --- a/tg/tl_messages_dh_config_gen.go +++ b/tg/tl_messages_dh_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_dh_config_slices_gen.go b/tg/tl_messages_dh_config_slices_gen.go index 50bde3cc90..6079882fa7 100644 --- a/tg/tl_messages_dh_config_slices_gen.go +++ b/tg/tl_messages_dh_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_dialog_filters_gen.go b/tg/tl_messages_dialog_filters_gen.go index 68b9c813a8..e4718f0196 100644 --- a/tg/tl_messages_dialog_filters_gen.go +++ b/tg/tl_messages_dialog_filters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_dialog_filters_slices_gen.go b/tg/tl_messages_dialog_filters_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_dialog_filters_slices_gen.go +++ b/tg/tl_messages_dialog_filters_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_dialogs_gen.go b/tg/tl_messages_dialogs_gen.go index 7cd9120ba9..7bc98c70ad 100644 --- a/tg/tl_messages_dialogs_gen.go +++ b/tg/tl_messages_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_dialogs_slices_gen.go b/tg/tl_messages_dialogs_slices_gen.go index ff73ad9f35..aeb8561496 100644 --- a/tg/tl_messages_dialogs_slices_gen.go +++ b/tg/tl_messages_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_discard_encryption_gen.go b/tg/tl_messages_discard_encryption_gen.go index 6b79742b65..9007c70266 100644 --- a/tg/tl_messages_discard_encryption_gen.go +++ b/tg/tl_messages_discard_encryption_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_discard_encryption_slices_gen.go b/tg/tl_messages_discard_encryption_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_discard_encryption_slices_gen.go +++ b/tg/tl_messages_discard_encryption_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_discussion_message_gen.go b/tg/tl_messages_discussion_message_gen.go index 0368c31f47..f9f79f9869 100644 --- a/tg/tl_messages_discussion_message_gen.go +++ b/tg/tl_messages_discussion_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_discussion_message_slices_gen.go b/tg/tl_messages_discussion_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_discussion_message_slices_gen.go +++ b/tg/tl_messages_discussion_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_about_gen.go b/tg/tl_messages_edit_chat_about_gen.go index f444d6277b..d020ef65b7 100644 --- a/tg/tl_messages_edit_chat_about_gen.go +++ b/tg/tl_messages_edit_chat_about_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_about_slices_gen.go b/tg/tl_messages_edit_chat_about_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_chat_about_slices_gen.go +++ b/tg/tl_messages_edit_chat_about_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_admin_gen.go b/tg/tl_messages_edit_chat_admin_gen.go index 9f1eab0412..7fe694e5e6 100644 --- a/tg/tl_messages_edit_chat_admin_gen.go +++ b/tg/tl_messages_edit_chat_admin_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_admin_slices_gen.go b/tg/tl_messages_edit_chat_admin_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_chat_admin_slices_gen.go +++ b/tg/tl_messages_edit_chat_admin_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_default_banned_rights_gen.go b/tg/tl_messages_edit_chat_default_banned_rights_gen.go index 2b41eba808..4ef18a7508 100644 --- a/tg/tl_messages_edit_chat_default_banned_rights_gen.go +++ b/tg/tl_messages_edit_chat_default_banned_rights_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_default_banned_rights_slices_gen.go b/tg/tl_messages_edit_chat_default_banned_rights_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_chat_default_banned_rights_slices_gen.go +++ b/tg/tl_messages_edit_chat_default_banned_rights_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_photo_gen.go b/tg/tl_messages_edit_chat_photo_gen.go index 55d3ba95c2..0feebc5bda 100644 --- a/tg/tl_messages_edit_chat_photo_gen.go +++ b/tg/tl_messages_edit_chat_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_photo_slices_gen.go b/tg/tl_messages_edit_chat_photo_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_chat_photo_slices_gen.go +++ b/tg/tl_messages_edit_chat_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_title_gen.go b/tg/tl_messages_edit_chat_title_gen.go index 24de037b54..4781252dd1 100644 --- a/tg/tl_messages_edit_chat_title_gen.go +++ b/tg/tl_messages_edit_chat_title_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_chat_title_slices_gen.go b/tg/tl_messages_edit_chat_title_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_chat_title_slices_gen.go +++ b/tg/tl_messages_edit_chat_title_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_exported_chat_invite_gen.go b/tg/tl_messages_edit_exported_chat_invite_gen.go index 04201533d5..6398de92fa 100644 --- a/tg/tl_messages_edit_exported_chat_invite_gen.go +++ b/tg/tl_messages_edit_exported_chat_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_exported_chat_invite_slices_gen.go b/tg/tl_messages_edit_exported_chat_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_exported_chat_invite_slices_gen.go +++ b/tg/tl_messages_edit_exported_chat_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_fact_check_gen.go b/tg/tl_messages_edit_fact_check_gen.go index b5fcabb6c4..3869cf982e 100644 --- a/tg/tl_messages_edit_fact_check_gen.go +++ b/tg/tl_messages_edit_fact_check_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_fact_check_slices_gen.go b/tg/tl_messages_edit_fact_check_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_fact_check_slices_gen.go +++ b/tg/tl_messages_edit_fact_check_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_inline_bot_message_gen.go b/tg/tl_messages_edit_inline_bot_message_gen.go index b0b65c4a42..041ed10bae 100644 --- a/tg/tl_messages_edit_inline_bot_message_gen.go +++ b/tg/tl_messages_edit_inline_bot_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_inline_bot_message_slices_gen.go b/tg/tl_messages_edit_inline_bot_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_inline_bot_message_slices_gen.go +++ b/tg/tl_messages_edit_inline_bot_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_message_gen.go b/tg/tl_messages_edit_message_gen.go index c15a6cba42..e471c63d92 100644 --- a/tg/tl_messages_edit_message_gen.go +++ b/tg/tl_messages_edit_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_message_slices_gen.go b/tg/tl_messages_edit_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_message_slices_gen.go +++ b/tg/tl_messages_edit_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_quick_reply_shortcut_gen.go b/tg/tl_messages_edit_quick_reply_shortcut_gen.go index b22ea1ea0b..08ef7d43e3 100644 --- a/tg/tl_messages_edit_quick_reply_shortcut_gen.go +++ b/tg/tl_messages_edit_quick_reply_shortcut_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_edit_quick_reply_shortcut_slices_gen.go b/tg/tl_messages_edit_quick_reply_shortcut_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_edit_quick_reply_shortcut_slices_gen.go +++ b/tg/tl_messages_edit_quick_reply_shortcut_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_emoji_groups_gen.go b/tg/tl_messages_emoji_groups_gen.go index e4ab993056..640ef74c17 100644 --- a/tg/tl_messages_emoji_groups_gen.go +++ b/tg/tl_messages_emoji_groups_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_emoji_groups_slices_gen.go b/tg/tl_messages_emoji_groups_slices_gen.go index b28a6330fd..7eb29c7a3d 100644 --- a/tg/tl_messages_emoji_groups_slices_gen.go +++ b/tg/tl_messages_emoji_groups_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_export_chat_invite_gen.go b/tg/tl_messages_export_chat_invite_gen.go index b0087acb34..f590ea778e 100644 --- a/tg/tl_messages_export_chat_invite_gen.go +++ b/tg/tl_messages_export_chat_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_export_chat_invite_slices_gen.go b/tg/tl_messages_export_chat_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_export_chat_invite_slices_gen.go +++ b/tg/tl_messages_export_chat_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_exported_chat_invite_gen.go b/tg/tl_messages_exported_chat_invite_gen.go index db225e9c1f..ee60a254d2 100644 --- a/tg/tl_messages_exported_chat_invite_gen.go +++ b/tg/tl_messages_exported_chat_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_exported_chat_invite_slices_gen.go b/tg/tl_messages_exported_chat_invite_slices_gen.go index f3d3db2e96..09b6943b0f 100644 --- a/tg/tl_messages_exported_chat_invite_slices_gen.go +++ b/tg/tl_messages_exported_chat_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_exported_chat_invites_gen.go b/tg/tl_messages_exported_chat_invites_gen.go index 9d90c534b9..a4c04cdb4d 100644 --- a/tg/tl_messages_exported_chat_invites_gen.go +++ b/tg/tl_messages_exported_chat_invites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_exported_chat_invites_slices_gen.go b/tg/tl_messages_exported_chat_invites_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_exported_chat_invites_slices_gen.go +++ b/tg/tl_messages_exported_chat_invites_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_fave_sticker_gen.go b/tg/tl_messages_fave_sticker_gen.go index 6f0de771a0..aa6b9b3103 100644 --- a/tg/tl_messages_fave_sticker_gen.go +++ b/tg/tl_messages_fave_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_fave_sticker_slices_gen.go b/tg/tl_messages_fave_sticker_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_fave_sticker_slices_gen.go +++ b/tg/tl_messages_fave_sticker_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_faved_stickers_gen.go b/tg/tl_messages_faved_stickers_gen.go index 2307794594..be4a18e47b 100644 --- a/tg/tl_messages_faved_stickers_gen.go +++ b/tg/tl_messages_faved_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_faved_stickers_slices_gen.go b/tg/tl_messages_faved_stickers_slices_gen.go index 90610a8013..ee8c85b073 100644 --- a/tg/tl_messages_faved_stickers_slices_gen.go +++ b/tg/tl_messages_faved_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_featured_stickers_gen.go b/tg/tl_messages_featured_stickers_gen.go index ed46b013e3..b4acef3620 100644 --- a/tg/tl_messages_featured_stickers_gen.go +++ b/tg/tl_messages_featured_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_featured_stickers_slices_gen.go b/tg/tl_messages_featured_stickers_slices_gen.go index a98c87cee1..ae5beb55be 100644 --- a/tg/tl_messages_featured_stickers_slices_gen.go +++ b/tg/tl_messages_featured_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_filter_gen.go b/tg/tl_messages_filter_gen.go index cd7e181039..058e19a470 100644 --- a/tg/tl_messages_filter_gen.go +++ b/tg/tl_messages_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_filter_slices_gen.go b/tg/tl_messages_filter_slices_gen.go index 13dad481c0..8b17d3fa82 100644 --- a/tg/tl_messages_filter_slices_gen.go +++ b/tg/tl_messages_filter_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_forum_topics_gen.go b/tg/tl_messages_forum_topics_gen.go index 0c2965d26a..b550f90a17 100644 --- a/tg/tl_messages_forum_topics_gen.go +++ b/tg/tl_messages_forum_topics_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_forum_topics_slices_gen.go b/tg/tl_messages_forum_topics_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_forum_topics_slices_gen.go +++ b/tg/tl_messages_forum_topics_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_forward_messages_gen.go b/tg/tl_messages_forward_messages_gen.go index 90bfe63638..315917a8ae 100644 --- a/tg/tl_messages_forward_messages_gen.go +++ b/tg/tl_messages_forward_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_forward_messages_slices_gen.go b/tg/tl_messages_forward_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_forward_messages_slices_gen.go +++ b/tg/tl_messages_forward_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_found_sticker_sets_gen.go b/tg/tl_messages_found_sticker_sets_gen.go index 01adbcb941..d18b17fe13 100644 --- a/tg/tl_messages_found_sticker_sets_gen.go +++ b/tg/tl_messages_found_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_found_sticker_sets_slices_gen.go b/tg/tl_messages_found_sticker_sets_slices_gen.go index d8629fb18b..aba5edfe23 100644 --- a/tg/tl_messages_found_sticker_sets_slices_gen.go +++ b/tg/tl_messages_found_sticker_sets_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_admins_with_invites_gen.go b/tg/tl_messages_get_admins_with_invites_gen.go index 235ce96cdf..7e03e8b11a 100644 --- a/tg/tl_messages_get_admins_with_invites_gen.go +++ b/tg/tl_messages_get_admins_with_invites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_admins_with_invites_slices_gen.go b/tg/tl_messages_get_admins_with_invites_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_admins_with_invites_slices_gen.go +++ b/tg/tl_messages_get_admins_with_invites_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_all_drafts_gen.go b/tg/tl_messages_get_all_drafts_gen.go index 379bb543aa..8ac59f7050 100644 --- a/tg/tl_messages_get_all_drafts_gen.go +++ b/tg/tl_messages_get_all_drafts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_all_drafts_slices_gen.go b/tg/tl_messages_get_all_drafts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_all_drafts_slices_gen.go +++ b/tg/tl_messages_get_all_drafts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_all_stickers_gen.go b/tg/tl_messages_get_all_stickers_gen.go index ecf215eb18..5f07c314de 100644 --- a/tg/tl_messages_get_all_stickers_gen.go +++ b/tg/tl_messages_get_all_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_all_stickers_slices_gen.go b/tg/tl_messages_get_all_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_all_stickers_slices_gen.go +++ b/tg/tl_messages_get_all_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_archived_stickers_gen.go b/tg/tl_messages_get_archived_stickers_gen.go index 13bf24ce41..c16d8d0f1e 100644 --- a/tg/tl_messages_get_archived_stickers_gen.go +++ b/tg/tl_messages_get_archived_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_archived_stickers_slices_gen.go b/tg/tl_messages_get_archived_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_archived_stickers_slices_gen.go +++ b/tg/tl_messages_get_archived_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_attach_menu_bot_gen.go b/tg/tl_messages_get_attach_menu_bot_gen.go index d6938261d2..c152f86396 100644 --- a/tg/tl_messages_get_attach_menu_bot_gen.go +++ b/tg/tl_messages_get_attach_menu_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_attach_menu_bot_slices_gen.go b/tg/tl_messages_get_attach_menu_bot_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_attach_menu_bot_slices_gen.go +++ b/tg/tl_messages_get_attach_menu_bot_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_attach_menu_bots_gen.go b/tg/tl_messages_get_attach_menu_bots_gen.go index d5aed886f5..c6a80ffe09 100644 --- a/tg/tl_messages_get_attach_menu_bots_gen.go +++ b/tg/tl_messages_get_attach_menu_bots_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_attach_menu_bots_slices_gen.go b/tg/tl_messages_get_attach_menu_bots_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_attach_menu_bots_slices_gen.go +++ b/tg/tl_messages_get_attach_menu_bots_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_attached_stickers_gen.go b/tg/tl_messages_get_attached_stickers_gen.go index 57c20a04e1..873ab35bcb 100644 --- a/tg/tl_messages_get_attached_stickers_gen.go +++ b/tg/tl_messages_get_attached_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_attached_stickers_slices_gen.go b/tg/tl_messages_get_attached_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_attached_stickers_slices_gen.go +++ b/tg/tl_messages_get_attached_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_available_effects_gen.go b/tg/tl_messages_get_available_effects_gen.go index b68adf0f4d..c94b1fccb0 100644 --- a/tg/tl_messages_get_available_effects_gen.go +++ b/tg/tl_messages_get_available_effects_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_available_effects_slices_gen.go b/tg/tl_messages_get_available_effects_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_available_effects_slices_gen.go +++ b/tg/tl_messages_get_available_effects_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_available_reactions_gen.go b/tg/tl_messages_get_available_reactions_gen.go index ce48d1b5f7..b48fca3a87 100644 --- a/tg/tl_messages_get_available_reactions_gen.go +++ b/tg/tl_messages_get_available_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_available_reactions_slices_gen.go b/tg/tl_messages_get_available_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_available_reactions_slices_gen.go +++ b/tg/tl_messages_get_available_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_bot_app_gen.go b/tg/tl_messages_get_bot_app_gen.go index 28d3599e4e..18acd0f220 100644 --- a/tg/tl_messages_get_bot_app_gen.go +++ b/tg/tl_messages_get_bot_app_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_bot_app_slices_gen.go b/tg/tl_messages_get_bot_app_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_bot_app_slices_gen.go +++ b/tg/tl_messages_get_bot_app_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_bot_callback_answer_gen.go b/tg/tl_messages_get_bot_callback_answer_gen.go index 59bed791f6..eb7da85ba6 100644 --- a/tg/tl_messages_get_bot_callback_answer_gen.go +++ b/tg/tl_messages_get_bot_callback_answer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_bot_callback_answer_slices_gen.go b/tg/tl_messages_get_bot_callback_answer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_bot_callback_answer_slices_gen.go +++ b/tg/tl_messages_get_bot_callback_answer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_chat_invite_importers_gen.go b/tg/tl_messages_get_chat_invite_importers_gen.go index 7ca5da3aee..4dd0377021 100644 --- a/tg/tl_messages_get_chat_invite_importers_gen.go +++ b/tg/tl_messages_get_chat_invite_importers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_chat_invite_importers_slices_gen.go b/tg/tl_messages_get_chat_invite_importers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_chat_invite_importers_slices_gen.go +++ b/tg/tl_messages_get_chat_invite_importers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_chats_gen.go b/tg/tl_messages_get_chats_gen.go index d4e5240319..06ae90a2bf 100644 --- a/tg/tl_messages_get_chats_gen.go +++ b/tg/tl_messages_get_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_chats_slices_gen.go b/tg/tl_messages_get_chats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_chats_slices_gen.go +++ b/tg/tl_messages_get_chats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_common_chats_gen.go b/tg/tl_messages_get_common_chats_gen.go index 11f3d99287..849dc3f2e1 100644 --- a/tg/tl_messages_get_common_chats_gen.go +++ b/tg/tl_messages_get_common_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_common_chats_slices_gen.go b/tg/tl_messages_get_common_chats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_common_chats_slices_gen.go +++ b/tg/tl_messages_get_common_chats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_custom_emoji_documents_gen.go b/tg/tl_messages_get_custom_emoji_documents_gen.go index cea1436fd6..ba4436c2c5 100644 --- a/tg/tl_messages_get_custom_emoji_documents_gen.go +++ b/tg/tl_messages_get_custom_emoji_documents_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_custom_emoji_documents_slices_gen.go b/tg/tl_messages_get_custom_emoji_documents_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_custom_emoji_documents_slices_gen.go +++ b/tg/tl_messages_get_custom_emoji_documents_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_default_history_ttl_gen.go b/tg/tl_messages_get_default_history_ttl_gen.go index 5548a0224e..37b57854f9 100644 --- a/tg/tl_messages_get_default_history_ttl_gen.go +++ b/tg/tl_messages_get_default_history_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_default_history_ttl_slices_gen.go b/tg/tl_messages_get_default_history_ttl_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_default_history_ttl_slices_gen.go +++ b/tg/tl_messages_get_default_history_ttl_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_default_tag_reactions_gen.go b/tg/tl_messages_get_default_tag_reactions_gen.go index e70feb349f..be13727092 100644 --- a/tg/tl_messages_get_default_tag_reactions_gen.go +++ b/tg/tl_messages_get_default_tag_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_default_tag_reactions_slices_gen.go b/tg/tl_messages_get_default_tag_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_default_tag_reactions_slices_gen.go +++ b/tg/tl_messages_get_default_tag_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_dh_config_gen.go b/tg/tl_messages_get_dh_config_gen.go index 4cc9296852..442403cc4b 100644 --- a/tg/tl_messages_get_dh_config_gen.go +++ b/tg/tl_messages_get_dh_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_dh_config_slices_gen.go b/tg/tl_messages_get_dh_config_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_dh_config_slices_gen.go +++ b/tg/tl_messages_get_dh_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_dialog_filters_gen.go b/tg/tl_messages_get_dialog_filters_gen.go index 5c53f7ccce..273efd4fee 100644 --- a/tg/tl_messages_get_dialog_filters_gen.go +++ b/tg/tl_messages_get_dialog_filters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_dialog_filters_slices_gen.go b/tg/tl_messages_get_dialog_filters_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_dialog_filters_slices_gen.go +++ b/tg/tl_messages_get_dialog_filters_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_dialog_unread_marks_gen.go b/tg/tl_messages_get_dialog_unread_marks_gen.go index 7b41f8f031..a275805ba2 100644 --- a/tg/tl_messages_get_dialog_unread_marks_gen.go +++ b/tg/tl_messages_get_dialog_unread_marks_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_dialog_unread_marks_slices_gen.go b/tg/tl_messages_get_dialog_unread_marks_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_dialog_unread_marks_slices_gen.go +++ b/tg/tl_messages_get_dialog_unread_marks_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_dialogs_gen.go b/tg/tl_messages_get_dialogs_gen.go index 8f7b944562..9c7df599c4 100644 --- a/tg/tl_messages_get_dialogs_gen.go +++ b/tg/tl_messages_get_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_dialogs_slices_gen.go b/tg/tl_messages_get_dialogs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_dialogs_slices_gen.go +++ b/tg/tl_messages_get_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_discussion_message_gen.go b/tg/tl_messages_get_discussion_message_gen.go index c2f5715dfa..83ae6e5c23 100644 --- a/tg/tl_messages_get_discussion_message_gen.go +++ b/tg/tl_messages_get_discussion_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_discussion_message_slices_gen.go b/tg/tl_messages_get_discussion_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_discussion_message_slices_gen.go +++ b/tg/tl_messages_get_discussion_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_document_by_hash_gen.go b/tg/tl_messages_get_document_by_hash_gen.go index 86c92e87f5..89e9aa6bdc 100644 --- a/tg/tl_messages_get_document_by_hash_gen.go +++ b/tg/tl_messages_get_document_by_hash_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_document_by_hash_slices_gen.go b/tg/tl_messages_get_document_by_hash_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_document_by_hash_slices_gen.go +++ b/tg/tl_messages_get_document_by_hash_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_groups_gen.go b/tg/tl_messages_get_emoji_groups_gen.go index ad1cf2a797..788f751fe4 100644 --- a/tg/tl_messages_get_emoji_groups_gen.go +++ b/tg/tl_messages_get_emoji_groups_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_groups_slices_gen.go b/tg/tl_messages_get_emoji_groups_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_emoji_groups_slices_gen.go +++ b/tg/tl_messages_get_emoji_groups_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_keywords_difference_gen.go b/tg/tl_messages_get_emoji_keywords_difference_gen.go index 415540b21e..8a727b3960 100644 --- a/tg/tl_messages_get_emoji_keywords_difference_gen.go +++ b/tg/tl_messages_get_emoji_keywords_difference_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_keywords_difference_slices_gen.go b/tg/tl_messages_get_emoji_keywords_difference_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_emoji_keywords_difference_slices_gen.go +++ b/tg/tl_messages_get_emoji_keywords_difference_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_keywords_gen.go b/tg/tl_messages_get_emoji_keywords_gen.go index cdba739ea3..a5d4d8149e 100644 --- a/tg/tl_messages_get_emoji_keywords_gen.go +++ b/tg/tl_messages_get_emoji_keywords_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_keywords_languages_gen.go b/tg/tl_messages_get_emoji_keywords_languages_gen.go index 3056417ea8..8a05ac43b9 100644 --- a/tg/tl_messages_get_emoji_keywords_languages_gen.go +++ b/tg/tl_messages_get_emoji_keywords_languages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_keywords_languages_slices_gen.go b/tg/tl_messages_get_emoji_keywords_languages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_emoji_keywords_languages_slices_gen.go +++ b/tg/tl_messages_get_emoji_keywords_languages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_keywords_slices_gen.go b/tg/tl_messages_get_emoji_keywords_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_emoji_keywords_slices_gen.go +++ b/tg/tl_messages_get_emoji_keywords_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_profile_photo_groups_gen.go b/tg/tl_messages_get_emoji_profile_photo_groups_gen.go index 0d8b152fdc..4c2f912bbb 100644 --- a/tg/tl_messages_get_emoji_profile_photo_groups_gen.go +++ b/tg/tl_messages_get_emoji_profile_photo_groups_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_profile_photo_groups_slices_gen.go b/tg/tl_messages_get_emoji_profile_photo_groups_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_emoji_profile_photo_groups_slices_gen.go +++ b/tg/tl_messages_get_emoji_profile_photo_groups_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_status_groups_gen.go b/tg/tl_messages_get_emoji_status_groups_gen.go index da8b9b7d4a..bc6bcc4e2e 100644 --- a/tg/tl_messages_get_emoji_status_groups_gen.go +++ b/tg/tl_messages_get_emoji_status_groups_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_status_groups_slices_gen.go b/tg/tl_messages_get_emoji_status_groups_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_emoji_status_groups_slices_gen.go +++ b/tg/tl_messages_get_emoji_status_groups_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_sticker_groups_gen.go b/tg/tl_messages_get_emoji_sticker_groups_gen.go index 053acbef54..b860cc0de6 100644 --- a/tg/tl_messages_get_emoji_sticker_groups_gen.go +++ b/tg/tl_messages_get_emoji_sticker_groups_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_sticker_groups_slices_gen.go b/tg/tl_messages_get_emoji_sticker_groups_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_emoji_sticker_groups_slices_gen.go +++ b/tg/tl_messages_get_emoji_sticker_groups_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_stickers_gen.go b/tg/tl_messages_get_emoji_stickers_gen.go index be8fc91861..2c0320913b 100644 --- a/tg/tl_messages_get_emoji_stickers_gen.go +++ b/tg/tl_messages_get_emoji_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_stickers_slices_gen.go b/tg/tl_messages_get_emoji_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_emoji_stickers_slices_gen.go +++ b/tg/tl_messages_get_emoji_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_url_gen.go b/tg/tl_messages_get_emoji_url_gen.go index 91cc8e20c4..de3001386e 100644 --- a/tg/tl_messages_get_emoji_url_gen.go +++ b/tg/tl_messages_get_emoji_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_emoji_url_slices_gen.go b/tg/tl_messages_get_emoji_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_emoji_url_slices_gen.go +++ b/tg/tl_messages_get_emoji_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_exported_chat_invite_gen.go b/tg/tl_messages_get_exported_chat_invite_gen.go index 5d041cf6da..c58388f2f9 100644 --- a/tg/tl_messages_get_exported_chat_invite_gen.go +++ b/tg/tl_messages_get_exported_chat_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_exported_chat_invite_slices_gen.go b/tg/tl_messages_get_exported_chat_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_exported_chat_invite_slices_gen.go +++ b/tg/tl_messages_get_exported_chat_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_exported_chat_invites_gen.go b/tg/tl_messages_get_exported_chat_invites_gen.go index b84dcf1699..35fe6787cb 100644 --- a/tg/tl_messages_get_exported_chat_invites_gen.go +++ b/tg/tl_messages_get_exported_chat_invites_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_exported_chat_invites_slices_gen.go b/tg/tl_messages_get_exported_chat_invites_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_exported_chat_invites_slices_gen.go +++ b/tg/tl_messages_get_exported_chat_invites_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_extended_media_gen.go b/tg/tl_messages_get_extended_media_gen.go index 4e7f686a64..e9c7d1edbf 100644 --- a/tg/tl_messages_get_extended_media_gen.go +++ b/tg/tl_messages_get_extended_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_extended_media_slices_gen.go b/tg/tl_messages_get_extended_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_extended_media_slices_gen.go +++ b/tg/tl_messages_get_extended_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_fact_check_gen.go b/tg/tl_messages_get_fact_check_gen.go index 48bc2a9be9..5b304e03b0 100644 --- a/tg/tl_messages_get_fact_check_gen.go +++ b/tg/tl_messages_get_fact_check_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_fact_check_slices_gen.go b/tg/tl_messages_get_fact_check_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_fact_check_slices_gen.go +++ b/tg/tl_messages_get_fact_check_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_faved_stickers_gen.go b/tg/tl_messages_get_faved_stickers_gen.go index bdd98b4ca4..f9cf7a553d 100644 --- a/tg/tl_messages_get_faved_stickers_gen.go +++ b/tg/tl_messages_get_faved_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_faved_stickers_slices_gen.go b/tg/tl_messages_get_faved_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_faved_stickers_slices_gen.go +++ b/tg/tl_messages_get_faved_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_featured_emoji_stickers_gen.go b/tg/tl_messages_get_featured_emoji_stickers_gen.go index c5eb676ff1..4679ffa088 100644 --- a/tg/tl_messages_get_featured_emoji_stickers_gen.go +++ b/tg/tl_messages_get_featured_emoji_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_featured_emoji_stickers_slices_gen.go b/tg/tl_messages_get_featured_emoji_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_featured_emoji_stickers_slices_gen.go +++ b/tg/tl_messages_get_featured_emoji_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_featured_stickers_gen.go b/tg/tl_messages_get_featured_stickers_gen.go index 53fc535c1a..9afefbab4b 100644 --- a/tg/tl_messages_get_featured_stickers_gen.go +++ b/tg/tl_messages_get_featured_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_featured_stickers_slices_gen.go b/tg/tl_messages_get_featured_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_featured_stickers_slices_gen.go +++ b/tg/tl_messages_get_featured_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_full_chat_gen.go b/tg/tl_messages_get_full_chat_gen.go index d5d8802f9a..b3e36db271 100644 --- a/tg/tl_messages_get_full_chat_gen.go +++ b/tg/tl_messages_get_full_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_full_chat_slices_gen.go b/tg/tl_messages_get_full_chat_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_full_chat_slices_gen.go +++ b/tg/tl_messages_get_full_chat_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_game_high_scores_gen.go b/tg/tl_messages_get_game_high_scores_gen.go index c971cf2670..248c6d8c9c 100644 --- a/tg/tl_messages_get_game_high_scores_gen.go +++ b/tg/tl_messages_get_game_high_scores_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_game_high_scores_slices_gen.go b/tg/tl_messages_get_game_high_scores_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_game_high_scores_slices_gen.go +++ b/tg/tl_messages_get_game_high_scores_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_history_gen.go b/tg/tl_messages_get_history_gen.go index 91280e4bec..4b4fbe7d1e 100644 --- a/tg/tl_messages_get_history_gen.go +++ b/tg/tl_messages_get_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_history_slices_gen.go b/tg/tl_messages_get_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_history_slices_gen.go +++ b/tg/tl_messages_get_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_inline_bot_results_gen.go b/tg/tl_messages_get_inline_bot_results_gen.go index e505838592..1a43aafa3f 100644 --- a/tg/tl_messages_get_inline_bot_results_gen.go +++ b/tg/tl_messages_get_inline_bot_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_inline_bot_results_slices_gen.go b/tg/tl_messages_get_inline_bot_results_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_inline_bot_results_slices_gen.go +++ b/tg/tl_messages_get_inline_bot_results_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_inline_game_high_scores_gen.go b/tg/tl_messages_get_inline_game_high_scores_gen.go index 39fd6ff38a..73b424211d 100644 --- a/tg/tl_messages_get_inline_game_high_scores_gen.go +++ b/tg/tl_messages_get_inline_game_high_scores_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_inline_game_high_scores_slices_gen.go b/tg/tl_messages_get_inline_game_high_scores_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_inline_game_high_scores_slices_gen.go +++ b/tg/tl_messages_get_inline_game_high_scores_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_mask_stickers_gen.go b/tg/tl_messages_get_mask_stickers_gen.go index 0b5aa7ea21..0b326f619f 100644 --- a/tg/tl_messages_get_mask_stickers_gen.go +++ b/tg/tl_messages_get_mask_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_mask_stickers_slices_gen.go b/tg/tl_messages_get_mask_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_mask_stickers_slices_gen.go +++ b/tg/tl_messages_get_mask_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_message_edit_data_gen.go b/tg/tl_messages_get_message_edit_data_gen.go index c5273cd3b0..4c8a70054a 100644 --- a/tg/tl_messages_get_message_edit_data_gen.go +++ b/tg/tl_messages_get_message_edit_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_message_edit_data_slices_gen.go b/tg/tl_messages_get_message_edit_data_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_message_edit_data_slices_gen.go +++ b/tg/tl_messages_get_message_edit_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_message_reactions_list_gen.go b/tg/tl_messages_get_message_reactions_list_gen.go index e4e17be1e8..c0886204fa 100644 --- a/tg/tl_messages_get_message_reactions_list_gen.go +++ b/tg/tl_messages_get_message_reactions_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_message_reactions_list_slices_gen.go b/tg/tl_messages_get_message_reactions_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_message_reactions_list_slices_gen.go +++ b/tg/tl_messages_get_message_reactions_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_message_read_participants_gen.go b/tg/tl_messages_get_message_read_participants_gen.go index bd053af29a..b14c53f419 100644 --- a/tg/tl_messages_get_message_read_participants_gen.go +++ b/tg/tl_messages_get_message_read_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_message_read_participants_slices_gen.go b/tg/tl_messages_get_message_read_participants_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_message_read_participants_slices_gen.go +++ b/tg/tl_messages_get_message_read_participants_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_messages_gen.go b/tg/tl_messages_get_messages_gen.go index 47db1c710a..5b7c79ccda 100644 --- a/tg/tl_messages_get_messages_gen.go +++ b/tg/tl_messages_get_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_messages_reactions_gen.go b/tg/tl_messages_get_messages_reactions_gen.go index bd11c247ea..9dc0f9bd18 100644 --- a/tg/tl_messages_get_messages_reactions_gen.go +++ b/tg/tl_messages_get_messages_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_messages_reactions_slices_gen.go b/tg/tl_messages_get_messages_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_messages_reactions_slices_gen.go +++ b/tg/tl_messages_get_messages_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_messages_slices_gen.go b/tg/tl_messages_get_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_messages_slices_gen.go +++ b/tg/tl_messages_get_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_messages_views_gen.go b/tg/tl_messages_get_messages_views_gen.go index b5b014b93c..3200fe6d34 100644 --- a/tg/tl_messages_get_messages_views_gen.go +++ b/tg/tl_messages_get_messages_views_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_messages_views_slices_gen.go b/tg/tl_messages_get_messages_views_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_messages_views_slices_gen.go +++ b/tg/tl_messages_get_messages_views_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_my_stickers_gen.go b/tg/tl_messages_get_my_stickers_gen.go index 3094546724..e0dda9513d 100644 --- a/tg/tl_messages_get_my_stickers_gen.go +++ b/tg/tl_messages_get_my_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_my_stickers_slices_gen.go b/tg/tl_messages_get_my_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_my_stickers_slices_gen.go +++ b/tg/tl_messages_get_my_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_old_featured_stickers_gen.go b/tg/tl_messages_get_old_featured_stickers_gen.go index bd7970f5eb..094d4a707b 100644 --- a/tg/tl_messages_get_old_featured_stickers_gen.go +++ b/tg/tl_messages_get_old_featured_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_old_featured_stickers_slices_gen.go b/tg/tl_messages_get_old_featured_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_old_featured_stickers_slices_gen.go +++ b/tg/tl_messages_get_old_featured_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_onlines_gen.go b/tg/tl_messages_get_onlines_gen.go index 90a0c52c05..78b276af1d 100644 --- a/tg/tl_messages_get_onlines_gen.go +++ b/tg/tl_messages_get_onlines_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_onlines_slices_gen.go b/tg/tl_messages_get_onlines_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_onlines_slices_gen.go +++ b/tg/tl_messages_get_onlines_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_outbox_read_date_gen.go b/tg/tl_messages_get_outbox_read_date_gen.go index 31cdea9589..77741930c0 100644 --- a/tg/tl_messages_get_outbox_read_date_gen.go +++ b/tg/tl_messages_get_outbox_read_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_outbox_read_date_slices_gen.go b/tg/tl_messages_get_outbox_read_date_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_outbox_read_date_slices_gen.go +++ b/tg/tl_messages_get_outbox_read_date_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_paid_reaction_privacy_gen.go b/tg/tl_messages_get_paid_reaction_privacy_gen.go index 359ed0b016..8018188584 100644 --- a/tg/tl_messages_get_paid_reaction_privacy_gen.go +++ b/tg/tl_messages_get_paid_reaction_privacy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_paid_reaction_privacy_slices_gen.go b/tg/tl_messages_get_paid_reaction_privacy_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_paid_reaction_privacy_slices_gen.go +++ b/tg/tl_messages_get_paid_reaction_privacy_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_peer_dialogs_gen.go b/tg/tl_messages_get_peer_dialogs_gen.go index a8509e8f03..89de6d7e1d 100644 --- a/tg/tl_messages_get_peer_dialogs_gen.go +++ b/tg/tl_messages_get_peer_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_peer_dialogs_slices_gen.go b/tg/tl_messages_get_peer_dialogs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_peer_dialogs_slices_gen.go +++ b/tg/tl_messages_get_peer_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_peer_settings_gen.go b/tg/tl_messages_get_peer_settings_gen.go index 81402ca48a..8d192880eb 100644 --- a/tg/tl_messages_get_peer_settings_gen.go +++ b/tg/tl_messages_get_peer_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_peer_settings_slices_gen.go b/tg/tl_messages_get_peer_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_peer_settings_slices_gen.go +++ b/tg/tl_messages_get_peer_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_pinned_dialogs_gen.go b/tg/tl_messages_get_pinned_dialogs_gen.go index bddc2e0952..a65e0c2747 100644 --- a/tg/tl_messages_get_pinned_dialogs_gen.go +++ b/tg/tl_messages_get_pinned_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_pinned_dialogs_slices_gen.go b/tg/tl_messages_get_pinned_dialogs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_pinned_dialogs_slices_gen.go +++ b/tg/tl_messages_get_pinned_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_pinned_saved_dialogs_gen.go b/tg/tl_messages_get_pinned_saved_dialogs_gen.go index dde2215c5d..f4adf0349d 100644 --- a/tg/tl_messages_get_pinned_saved_dialogs_gen.go +++ b/tg/tl_messages_get_pinned_saved_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_pinned_saved_dialogs_slices_gen.go b/tg/tl_messages_get_pinned_saved_dialogs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_pinned_saved_dialogs_slices_gen.go +++ b/tg/tl_messages_get_pinned_saved_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_poll_results_gen.go b/tg/tl_messages_get_poll_results_gen.go index 0406a6b54f..7362f64aa8 100644 --- a/tg/tl_messages_get_poll_results_gen.go +++ b/tg/tl_messages_get_poll_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_poll_results_slices_gen.go b/tg/tl_messages_get_poll_results_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_poll_results_slices_gen.go +++ b/tg/tl_messages_get_poll_results_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_poll_votes_gen.go b/tg/tl_messages_get_poll_votes_gen.go index ba3e1900c8..87378abfd8 100644 --- a/tg/tl_messages_get_poll_votes_gen.go +++ b/tg/tl_messages_get_poll_votes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_poll_votes_slices_gen.go b/tg/tl_messages_get_poll_votes_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_poll_votes_slices_gen.go +++ b/tg/tl_messages_get_poll_votes_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_prepared_inline_message_gen.go b/tg/tl_messages_get_prepared_inline_message_gen.go index d1eb58dbb8..eae0aeba2f 100644 --- a/tg/tl_messages_get_prepared_inline_message_gen.go +++ b/tg/tl_messages_get_prepared_inline_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_prepared_inline_message_slices_gen.go b/tg/tl_messages_get_prepared_inline_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_prepared_inline_message_slices_gen.go +++ b/tg/tl_messages_get_prepared_inline_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_quick_replies_gen.go b/tg/tl_messages_get_quick_replies_gen.go index f1d883137c..6c8eaa0233 100644 --- a/tg/tl_messages_get_quick_replies_gen.go +++ b/tg/tl_messages_get_quick_replies_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_quick_replies_slices_gen.go b/tg/tl_messages_get_quick_replies_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_quick_replies_slices_gen.go +++ b/tg/tl_messages_get_quick_replies_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_quick_reply_messages_gen.go b/tg/tl_messages_get_quick_reply_messages_gen.go index 560d3e98f9..c6866ca11c 100644 --- a/tg/tl_messages_get_quick_reply_messages_gen.go +++ b/tg/tl_messages_get_quick_reply_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_quick_reply_messages_slices_gen.go b/tg/tl_messages_get_quick_reply_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_quick_reply_messages_slices_gen.go +++ b/tg/tl_messages_get_quick_reply_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_recent_locations_gen.go b/tg/tl_messages_get_recent_locations_gen.go index 07d8d8570e..534d4bcf34 100644 --- a/tg/tl_messages_get_recent_locations_gen.go +++ b/tg/tl_messages_get_recent_locations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_recent_locations_slices_gen.go b/tg/tl_messages_get_recent_locations_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_recent_locations_slices_gen.go +++ b/tg/tl_messages_get_recent_locations_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_recent_reactions_gen.go b/tg/tl_messages_get_recent_reactions_gen.go index 4d6eeab1f7..826788f237 100644 --- a/tg/tl_messages_get_recent_reactions_gen.go +++ b/tg/tl_messages_get_recent_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_recent_reactions_slices_gen.go b/tg/tl_messages_get_recent_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_recent_reactions_slices_gen.go +++ b/tg/tl_messages_get_recent_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_recent_stickers_gen.go b/tg/tl_messages_get_recent_stickers_gen.go index a90dfbf647..afbde9926a 100644 --- a/tg/tl_messages_get_recent_stickers_gen.go +++ b/tg/tl_messages_get_recent_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_recent_stickers_slices_gen.go b/tg/tl_messages_get_recent_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_recent_stickers_slices_gen.go +++ b/tg/tl_messages_get_recent_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_replies_gen.go b/tg/tl_messages_get_replies_gen.go index 314b2d6762..cb8a83f072 100644 --- a/tg/tl_messages_get_replies_gen.go +++ b/tg/tl_messages_get_replies_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_replies_slices_gen.go b/tg/tl_messages_get_replies_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_replies_slices_gen.go +++ b/tg/tl_messages_get_replies_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_saved_dialogs_gen.go b/tg/tl_messages_get_saved_dialogs_gen.go index 2a213e3a13..81b3d58b92 100644 --- a/tg/tl_messages_get_saved_dialogs_gen.go +++ b/tg/tl_messages_get_saved_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_saved_dialogs_slices_gen.go b/tg/tl_messages_get_saved_dialogs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_saved_dialogs_slices_gen.go +++ b/tg/tl_messages_get_saved_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_saved_gifs_gen.go b/tg/tl_messages_get_saved_gifs_gen.go index 40dd8c2f2f..881cb25af1 100644 --- a/tg/tl_messages_get_saved_gifs_gen.go +++ b/tg/tl_messages_get_saved_gifs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_saved_gifs_slices_gen.go b/tg/tl_messages_get_saved_gifs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_saved_gifs_slices_gen.go +++ b/tg/tl_messages_get_saved_gifs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_saved_history_gen.go b/tg/tl_messages_get_saved_history_gen.go index 76331fff78..4e385f75f2 100644 --- a/tg/tl_messages_get_saved_history_gen.go +++ b/tg/tl_messages_get_saved_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_saved_history_slices_gen.go b/tg/tl_messages_get_saved_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_saved_history_slices_gen.go +++ b/tg/tl_messages_get_saved_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_saved_reaction_tags_gen.go b/tg/tl_messages_get_saved_reaction_tags_gen.go index d1fd261404..dede6dac39 100644 --- a/tg/tl_messages_get_saved_reaction_tags_gen.go +++ b/tg/tl_messages_get_saved_reaction_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_saved_reaction_tags_slices_gen.go b/tg/tl_messages_get_saved_reaction_tags_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_saved_reaction_tags_slices_gen.go +++ b/tg/tl_messages_get_saved_reaction_tags_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_scheduled_history_gen.go b/tg/tl_messages_get_scheduled_history_gen.go index d76ab40464..039f035a18 100644 --- a/tg/tl_messages_get_scheduled_history_gen.go +++ b/tg/tl_messages_get_scheduled_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_scheduled_history_slices_gen.go b/tg/tl_messages_get_scheduled_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_scheduled_history_slices_gen.go +++ b/tg/tl_messages_get_scheduled_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_scheduled_messages_gen.go b/tg/tl_messages_get_scheduled_messages_gen.go index 969e8e850f..3414b28901 100644 --- a/tg/tl_messages_get_scheduled_messages_gen.go +++ b/tg/tl_messages_get_scheduled_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_scheduled_messages_slices_gen.go b/tg/tl_messages_get_scheduled_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_scheduled_messages_slices_gen.go +++ b/tg/tl_messages_get_scheduled_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_search_counters_gen.go b/tg/tl_messages_get_search_counters_gen.go index 32d32bfb1b..08c92ff398 100644 --- a/tg/tl_messages_get_search_counters_gen.go +++ b/tg/tl_messages_get_search_counters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_search_counters_slices_gen.go b/tg/tl_messages_get_search_counters_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_search_counters_slices_gen.go +++ b/tg/tl_messages_get_search_counters_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_search_results_calendar_gen.go b/tg/tl_messages_get_search_results_calendar_gen.go index 6358cf1d45..c5c3db3581 100644 --- a/tg/tl_messages_get_search_results_calendar_gen.go +++ b/tg/tl_messages_get_search_results_calendar_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_search_results_calendar_slices_gen.go b/tg/tl_messages_get_search_results_calendar_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_search_results_calendar_slices_gen.go +++ b/tg/tl_messages_get_search_results_calendar_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_search_results_positions_gen.go b/tg/tl_messages_get_search_results_positions_gen.go index cec6ec6047..3acdafdd0e 100644 --- a/tg/tl_messages_get_search_results_positions_gen.go +++ b/tg/tl_messages_get_search_results_positions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_search_results_positions_slices_gen.go b/tg/tl_messages_get_search_results_positions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_search_results_positions_slices_gen.go +++ b/tg/tl_messages_get_search_results_positions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_split_ranges_gen.go b/tg/tl_messages_get_split_ranges_gen.go index 59d8cefe60..e3573c2a64 100644 --- a/tg/tl_messages_get_split_ranges_gen.go +++ b/tg/tl_messages_get_split_ranges_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_split_ranges_slices_gen.go b/tg/tl_messages_get_split_ranges_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_split_ranges_slices_gen.go +++ b/tg/tl_messages_get_split_ranges_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_sponsored_messages_gen.go b/tg/tl_messages_get_sponsored_messages_gen.go index d77438841f..f541776eef 100644 --- a/tg/tl_messages_get_sponsored_messages_gen.go +++ b/tg/tl_messages_get_sponsored_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_sponsored_messages_slices_gen.go b/tg/tl_messages_get_sponsored_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_sponsored_messages_slices_gen.go +++ b/tg/tl_messages_get_sponsored_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_sticker_set_gen.go b/tg/tl_messages_get_sticker_set_gen.go index 0da828b455..148685e270 100644 --- a/tg/tl_messages_get_sticker_set_gen.go +++ b/tg/tl_messages_get_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_sticker_set_slices_gen.go b/tg/tl_messages_get_sticker_set_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_sticker_set_slices_gen.go +++ b/tg/tl_messages_get_sticker_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_stickers_gen.go b/tg/tl_messages_get_stickers_gen.go index 63cc5f2d45..52325a65c5 100644 --- a/tg/tl_messages_get_stickers_gen.go +++ b/tg/tl_messages_get_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_stickers_slices_gen.go b/tg/tl_messages_get_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_stickers_slices_gen.go +++ b/tg/tl_messages_get_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_suggested_dialog_filters_gen.go b/tg/tl_messages_get_suggested_dialog_filters_gen.go index e8da84e5e5..55bca139a4 100644 --- a/tg/tl_messages_get_suggested_dialog_filters_gen.go +++ b/tg/tl_messages_get_suggested_dialog_filters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_suggested_dialog_filters_slices_gen.go b/tg/tl_messages_get_suggested_dialog_filters_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_suggested_dialog_filters_slices_gen.go +++ b/tg/tl_messages_get_suggested_dialog_filters_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_top_reactions_gen.go b/tg/tl_messages_get_top_reactions_gen.go index 378e2e024f..bae6966c37 100644 --- a/tg/tl_messages_get_top_reactions_gen.go +++ b/tg/tl_messages_get_top_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_top_reactions_slices_gen.go b/tg/tl_messages_get_top_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_top_reactions_slices_gen.go +++ b/tg/tl_messages_get_top_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_unread_mentions_gen.go b/tg/tl_messages_get_unread_mentions_gen.go index 0a08879a77..b47f219191 100644 --- a/tg/tl_messages_get_unread_mentions_gen.go +++ b/tg/tl_messages_get_unread_mentions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_unread_mentions_slices_gen.go b/tg/tl_messages_get_unread_mentions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_unread_mentions_slices_gen.go +++ b/tg/tl_messages_get_unread_mentions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_unread_reactions_gen.go b/tg/tl_messages_get_unread_reactions_gen.go index f6202c06f3..8bfe8165c5 100644 --- a/tg/tl_messages_get_unread_reactions_gen.go +++ b/tg/tl_messages_get_unread_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_unread_reactions_slices_gen.go b/tg/tl_messages_get_unread_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_unread_reactions_slices_gen.go +++ b/tg/tl_messages_get_unread_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_web_page_gen.go b/tg/tl_messages_get_web_page_gen.go index cae47b922f..9ee1824f5f 100644 --- a/tg/tl_messages_get_web_page_gen.go +++ b/tg/tl_messages_get_web_page_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_web_page_preview_gen.go b/tg/tl_messages_get_web_page_preview_gen.go index aac956940f..e1c7b507b4 100644 --- a/tg/tl_messages_get_web_page_preview_gen.go +++ b/tg/tl_messages_get_web_page_preview_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_web_page_preview_slices_gen.go b/tg/tl_messages_get_web_page_preview_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_web_page_preview_slices_gen.go +++ b/tg/tl_messages_get_web_page_preview_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_get_web_page_slices_gen.go b/tg/tl_messages_get_web_page_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_get_web_page_slices_gen.go +++ b/tg/tl_messages_get_web_page_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_hide_all_chat_join_requests_gen.go b/tg/tl_messages_hide_all_chat_join_requests_gen.go index 3daaee0bda..d6a1483984 100644 --- a/tg/tl_messages_hide_all_chat_join_requests_gen.go +++ b/tg/tl_messages_hide_all_chat_join_requests_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_hide_all_chat_join_requests_slices_gen.go b/tg/tl_messages_hide_all_chat_join_requests_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_hide_all_chat_join_requests_slices_gen.go +++ b/tg/tl_messages_hide_all_chat_join_requests_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_hide_chat_join_request_gen.go b/tg/tl_messages_hide_chat_join_request_gen.go index 72503a6952..b0680041c1 100644 --- a/tg/tl_messages_hide_chat_join_request_gen.go +++ b/tg/tl_messages_hide_chat_join_request_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_hide_chat_join_request_slices_gen.go b/tg/tl_messages_hide_chat_join_request_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_hide_chat_join_request_slices_gen.go +++ b/tg/tl_messages_hide_chat_join_request_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_hide_peer_settings_bar_gen.go b/tg/tl_messages_hide_peer_settings_bar_gen.go index 390946b43e..20646e19c8 100644 --- a/tg/tl_messages_hide_peer_settings_bar_gen.go +++ b/tg/tl_messages_hide_peer_settings_bar_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_hide_peer_settings_bar_slices_gen.go b/tg/tl_messages_hide_peer_settings_bar_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_hide_peer_settings_bar_slices_gen.go +++ b/tg/tl_messages_hide_peer_settings_bar_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_high_scores_gen.go b/tg/tl_messages_high_scores_gen.go index 159ba62c93..f3d76ddc34 100644 --- a/tg/tl_messages_high_scores_gen.go +++ b/tg/tl_messages_high_scores_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_high_scores_slices_gen.go b/tg/tl_messages_high_scores_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_high_scores_slices_gen.go +++ b/tg/tl_messages_high_scores_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_history_import_gen.go b/tg/tl_messages_history_import_gen.go index 7d3e575d7c..5cdaefdcac 100644 --- a/tg/tl_messages_history_import_gen.go +++ b/tg/tl_messages_history_import_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_history_import_parsed_gen.go b/tg/tl_messages_history_import_parsed_gen.go index cf00b534ff..a01770db66 100644 --- a/tg/tl_messages_history_import_parsed_gen.go +++ b/tg/tl_messages_history_import_parsed_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_history_import_parsed_slices_gen.go b/tg/tl_messages_history_import_parsed_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_history_import_parsed_slices_gen.go +++ b/tg/tl_messages_history_import_parsed_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_history_import_slices_gen.go b/tg/tl_messages_history_import_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_history_import_slices_gen.go +++ b/tg/tl_messages_history_import_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_import_chat_invite_gen.go b/tg/tl_messages_import_chat_invite_gen.go index 24540d24f8..046e603cde 100644 --- a/tg/tl_messages_import_chat_invite_gen.go +++ b/tg/tl_messages_import_chat_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_import_chat_invite_slices_gen.go b/tg/tl_messages_import_chat_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_import_chat_invite_slices_gen.go +++ b/tg/tl_messages_import_chat_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_inactive_chats_gen.go b/tg/tl_messages_inactive_chats_gen.go index 31f3e90e27..132b4d96e2 100644 --- a/tg/tl_messages_inactive_chats_gen.go +++ b/tg/tl_messages_inactive_chats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_inactive_chats_slices_gen.go b/tg/tl_messages_inactive_chats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_inactive_chats_slices_gen.go +++ b/tg/tl_messages_inactive_chats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_init_history_import_gen.go b/tg/tl_messages_init_history_import_gen.go index a9fddad8f0..a53230670d 100644 --- a/tg/tl_messages_init_history_import_gen.go +++ b/tg/tl_messages_init_history_import_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_init_history_import_slices_gen.go b/tg/tl_messages_init_history_import_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_init_history_import_slices_gen.go +++ b/tg/tl_messages_init_history_import_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_install_sticker_set_gen.go b/tg/tl_messages_install_sticker_set_gen.go index 45bb6740c0..f17c2dc2ff 100644 --- a/tg/tl_messages_install_sticker_set_gen.go +++ b/tg/tl_messages_install_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_install_sticker_set_slices_gen.go b/tg/tl_messages_install_sticker_set_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_install_sticker_set_slices_gen.go +++ b/tg/tl_messages_install_sticker_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_invited_users_gen.go b/tg/tl_messages_invited_users_gen.go index 9f079084bf..ff7c9904b9 100644 --- a/tg/tl_messages_invited_users_gen.go +++ b/tg/tl_messages_invited_users_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_invited_users_slices_gen.go b/tg/tl_messages_invited_users_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_invited_users_slices_gen.go +++ b/tg/tl_messages_invited_users_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_mark_dialog_unread_gen.go b/tg/tl_messages_mark_dialog_unread_gen.go index 8da6428fd3..ad3fc7590c 100644 --- a/tg/tl_messages_mark_dialog_unread_gen.go +++ b/tg/tl_messages_mark_dialog_unread_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_mark_dialog_unread_slices_gen.go b/tg/tl_messages_mark_dialog_unread_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_mark_dialog_unread_slices_gen.go +++ b/tg/tl_messages_mark_dialog_unread_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_message_edit_data_gen.go b/tg/tl_messages_message_edit_data_gen.go index e8a8ff295d..e1bff619eb 100644 --- a/tg/tl_messages_message_edit_data_gen.go +++ b/tg/tl_messages_message_edit_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_message_edit_data_slices_gen.go b/tg/tl_messages_message_edit_data_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_message_edit_data_slices_gen.go +++ b/tg/tl_messages_message_edit_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_message_reactions_list_gen.go b/tg/tl_messages_message_reactions_list_gen.go index 4b8346ec72..36102b476b 100644 --- a/tg/tl_messages_message_reactions_list_gen.go +++ b/tg/tl_messages_message_reactions_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_message_reactions_list_slices_gen.go b/tg/tl_messages_message_reactions_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_message_reactions_list_slices_gen.go +++ b/tg/tl_messages_message_reactions_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_message_views_gen.go b/tg/tl_messages_message_views_gen.go index 54522cc059..78bd728b2a 100644 --- a/tg/tl_messages_message_views_gen.go +++ b/tg/tl_messages_message_views_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_message_views_slices_gen.go b/tg/tl_messages_message_views_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_message_views_slices_gen.go +++ b/tg/tl_messages_message_views_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_messages_gen.go b/tg/tl_messages_messages_gen.go index e735098cb7..a19ba0ca0d 100644 --- a/tg/tl_messages_messages_gen.go +++ b/tg/tl_messages_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_messages_slices_gen.go b/tg/tl_messages_messages_slices_gen.go index d0c0c612b9..bf99ee9a5c 100644 --- a/tg/tl_messages_messages_slices_gen.go +++ b/tg/tl_messages_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_migrate_chat_gen.go b/tg/tl_messages_migrate_chat_gen.go index 41a92d9c0b..fb7cdc2381 100644 --- a/tg/tl_messages_migrate_chat_gen.go +++ b/tg/tl_messages_migrate_chat_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_migrate_chat_slices_gen.go b/tg/tl_messages_migrate_chat_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_migrate_chat_slices_gen.go +++ b/tg/tl_messages_migrate_chat_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_my_stickers_gen.go b/tg/tl_messages_my_stickers_gen.go index adf0e9cf85..a64a713a6d 100644 --- a/tg/tl_messages_my_stickers_gen.go +++ b/tg/tl_messages_my_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_my_stickers_slices_gen.go b/tg/tl_messages_my_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_my_stickers_slices_gen.go +++ b/tg/tl_messages_my_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_peer_dialogs_gen.go b/tg/tl_messages_peer_dialogs_gen.go index bb1dde5585..001f0951f1 100644 --- a/tg/tl_messages_peer_dialogs_gen.go +++ b/tg/tl_messages_peer_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_peer_dialogs_slices_gen.go b/tg/tl_messages_peer_dialogs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_peer_dialogs_slices_gen.go +++ b/tg/tl_messages_peer_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_peer_settings_gen.go b/tg/tl_messages_peer_settings_gen.go index 3488a67dd7..d475c522ea 100644 --- a/tg/tl_messages_peer_settings_gen.go +++ b/tg/tl_messages_peer_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_peer_settings_slices_gen.go b/tg/tl_messages_peer_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_peer_settings_slices_gen.go +++ b/tg/tl_messages_peer_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_prepared_inline_message_gen.go b/tg/tl_messages_prepared_inline_message_gen.go index 32bedeb6d5..6be0d276f9 100644 --- a/tg/tl_messages_prepared_inline_message_gen.go +++ b/tg/tl_messages_prepared_inline_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_prepared_inline_message_slices_gen.go b/tg/tl_messages_prepared_inline_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_prepared_inline_message_slices_gen.go +++ b/tg/tl_messages_prepared_inline_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_prolong_web_view_gen.go b/tg/tl_messages_prolong_web_view_gen.go index e7e4212911..ae24ff1afc 100644 --- a/tg/tl_messages_prolong_web_view_gen.go +++ b/tg/tl_messages_prolong_web_view_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_prolong_web_view_slices_gen.go b/tg/tl_messages_prolong_web_view_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_prolong_web_view_slices_gen.go +++ b/tg/tl_messages_prolong_web_view_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_quick_replies_gen.go b/tg/tl_messages_quick_replies_gen.go index a6f6dad03d..7ade18f465 100644 --- a/tg/tl_messages_quick_replies_gen.go +++ b/tg/tl_messages_quick_replies_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_quick_replies_slices_gen.go b/tg/tl_messages_quick_replies_slices_gen.go index ab031ea040..0cf1eb5013 100644 --- a/tg/tl_messages_quick_replies_slices_gen.go +++ b/tg/tl_messages_quick_replies_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_rate_transcribed_audio_gen.go b/tg/tl_messages_rate_transcribed_audio_gen.go index 64c077cb9b..c21568d47e 100644 --- a/tg/tl_messages_rate_transcribed_audio_gen.go +++ b/tg/tl_messages_rate_transcribed_audio_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_rate_transcribed_audio_slices_gen.go b/tg/tl_messages_rate_transcribed_audio_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_rate_transcribed_audio_slices_gen.go +++ b/tg/tl_messages_rate_transcribed_audio_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reactions_gen.go b/tg/tl_messages_reactions_gen.go index cb3fcb2527..cedd269b7f 100644 --- a/tg/tl_messages_reactions_gen.go +++ b/tg/tl_messages_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reactions_slices_gen.go b/tg/tl_messages_reactions_slices_gen.go index ab96b38682..9df93b12f6 100644 --- a/tg/tl_messages_reactions_slices_gen.go +++ b/tg/tl_messages_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_discussion_gen.go b/tg/tl_messages_read_discussion_gen.go index c01faf5d02..dd14f1c097 100644 --- a/tg/tl_messages_read_discussion_gen.go +++ b/tg/tl_messages_read_discussion_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_discussion_slices_gen.go b/tg/tl_messages_read_discussion_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_read_discussion_slices_gen.go +++ b/tg/tl_messages_read_discussion_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_encrypted_history_gen.go b/tg/tl_messages_read_encrypted_history_gen.go index c908188093..58db171631 100644 --- a/tg/tl_messages_read_encrypted_history_gen.go +++ b/tg/tl_messages_read_encrypted_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_encrypted_history_slices_gen.go b/tg/tl_messages_read_encrypted_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_read_encrypted_history_slices_gen.go +++ b/tg/tl_messages_read_encrypted_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_featured_stickers_gen.go b/tg/tl_messages_read_featured_stickers_gen.go index 178d26c932..ae20ca19d1 100644 --- a/tg/tl_messages_read_featured_stickers_gen.go +++ b/tg/tl_messages_read_featured_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_featured_stickers_slices_gen.go b/tg/tl_messages_read_featured_stickers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_read_featured_stickers_slices_gen.go +++ b/tg/tl_messages_read_featured_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_history_gen.go b/tg/tl_messages_read_history_gen.go index 0136a14633..001d9bd82f 100644 --- a/tg/tl_messages_read_history_gen.go +++ b/tg/tl_messages_read_history_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_history_slices_gen.go b/tg/tl_messages_read_history_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_read_history_slices_gen.go +++ b/tg/tl_messages_read_history_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_mentions_gen.go b/tg/tl_messages_read_mentions_gen.go index 54d3172150..8a98397aa9 100644 --- a/tg/tl_messages_read_mentions_gen.go +++ b/tg/tl_messages_read_mentions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_mentions_slices_gen.go b/tg/tl_messages_read_mentions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_read_mentions_slices_gen.go +++ b/tg/tl_messages_read_mentions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_message_contents_gen.go b/tg/tl_messages_read_message_contents_gen.go index 7c459f5806..2f566da9b6 100644 --- a/tg/tl_messages_read_message_contents_gen.go +++ b/tg/tl_messages_read_message_contents_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_message_contents_slices_gen.go b/tg/tl_messages_read_message_contents_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_read_message_contents_slices_gen.go +++ b/tg/tl_messages_read_message_contents_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_reactions_gen.go b/tg/tl_messages_read_reactions_gen.go index bf91b600aa..bf8baa8e8b 100644 --- a/tg/tl_messages_read_reactions_gen.go +++ b/tg/tl_messages_read_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_read_reactions_slices_gen.go b/tg/tl_messages_read_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_read_reactions_slices_gen.go +++ b/tg/tl_messages_read_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_received_messages_gen.go b/tg/tl_messages_received_messages_gen.go index 5a9e20a778..7626ffd76f 100644 --- a/tg/tl_messages_received_messages_gen.go +++ b/tg/tl_messages_received_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_received_messages_slices_gen.go b/tg/tl_messages_received_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_received_messages_slices_gen.go +++ b/tg/tl_messages_received_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_received_queue_gen.go b/tg/tl_messages_received_queue_gen.go index 975145aa42..9c3fe4425d 100644 --- a/tg/tl_messages_received_queue_gen.go +++ b/tg/tl_messages_received_queue_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_received_queue_slices_gen.go b/tg/tl_messages_received_queue_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_received_queue_slices_gen.go +++ b/tg/tl_messages_received_queue_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_recent_stickers_gen.go b/tg/tl_messages_recent_stickers_gen.go index 43ff94e24a..b65410b64a 100644 --- a/tg/tl_messages_recent_stickers_gen.go +++ b/tg/tl_messages_recent_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_recent_stickers_slices_gen.go b/tg/tl_messages_recent_stickers_slices_gen.go index 59f2fbf712..40b59df13f 100644 --- a/tg/tl_messages_recent_stickers_slices_gen.go +++ b/tg/tl_messages_recent_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reorder_pinned_dialogs_gen.go b/tg/tl_messages_reorder_pinned_dialogs_gen.go index 55b6234b20..b79764c06d 100644 --- a/tg/tl_messages_reorder_pinned_dialogs_gen.go +++ b/tg/tl_messages_reorder_pinned_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reorder_pinned_dialogs_slices_gen.go b/tg/tl_messages_reorder_pinned_dialogs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_reorder_pinned_dialogs_slices_gen.go +++ b/tg/tl_messages_reorder_pinned_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reorder_pinned_saved_dialogs_gen.go b/tg/tl_messages_reorder_pinned_saved_dialogs_gen.go index 2c4b166cf6..cb0541fd38 100644 --- a/tg/tl_messages_reorder_pinned_saved_dialogs_gen.go +++ b/tg/tl_messages_reorder_pinned_saved_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reorder_pinned_saved_dialogs_slices_gen.go b/tg/tl_messages_reorder_pinned_saved_dialogs_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_reorder_pinned_saved_dialogs_slices_gen.go +++ b/tg/tl_messages_reorder_pinned_saved_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reorder_quick_replies_gen.go b/tg/tl_messages_reorder_quick_replies_gen.go index fff6ca3c6c..dc2e6b6c96 100644 --- a/tg/tl_messages_reorder_quick_replies_gen.go +++ b/tg/tl_messages_reorder_quick_replies_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reorder_quick_replies_slices_gen.go b/tg/tl_messages_reorder_quick_replies_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_reorder_quick_replies_slices_gen.go +++ b/tg/tl_messages_reorder_quick_replies_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reorder_sticker_sets_gen.go b/tg/tl_messages_reorder_sticker_sets_gen.go index 100f5cb5ba..c95d5c7a68 100644 --- a/tg/tl_messages_reorder_sticker_sets_gen.go +++ b/tg/tl_messages_reorder_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_reorder_sticker_sets_slices_gen.go b/tg/tl_messages_reorder_sticker_sets_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_reorder_sticker_sets_slices_gen.go +++ b/tg/tl_messages_reorder_sticker_sets_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_encrypted_spam_gen.go b/tg/tl_messages_report_encrypted_spam_gen.go index 52171078f8..5ee8876255 100644 --- a/tg/tl_messages_report_encrypted_spam_gen.go +++ b/tg/tl_messages_report_encrypted_spam_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_encrypted_spam_slices_gen.go b/tg/tl_messages_report_encrypted_spam_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_report_encrypted_spam_slices_gen.go +++ b/tg/tl_messages_report_encrypted_spam_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_gen.go b/tg/tl_messages_report_gen.go index 08fd0363e2..7a7f09c511 100644 --- a/tg/tl_messages_report_gen.go +++ b/tg/tl_messages_report_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_reaction_gen.go b/tg/tl_messages_report_reaction_gen.go index a6b920bf3f..fce55a8c0c 100644 --- a/tg/tl_messages_report_reaction_gen.go +++ b/tg/tl_messages_report_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_reaction_slices_gen.go b/tg/tl_messages_report_reaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_report_reaction_slices_gen.go +++ b/tg/tl_messages_report_reaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_slices_gen.go b/tg/tl_messages_report_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_report_slices_gen.go +++ b/tg/tl_messages_report_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_spam_gen.go b/tg/tl_messages_report_spam_gen.go index 5d0e687e94..0c967bb7ff 100644 --- a/tg/tl_messages_report_spam_gen.go +++ b/tg/tl_messages_report_spam_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_spam_slices_gen.go b/tg/tl_messages_report_spam_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_report_spam_slices_gen.go +++ b/tg/tl_messages_report_spam_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_sponsored_message_gen.go b/tg/tl_messages_report_sponsored_message_gen.go index c44439f493..e9de44e3e3 100644 --- a/tg/tl_messages_report_sponsored_message_gen.go +++ b/tg/tl_messages_report_sponsored_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_report_sponsored_message_slices_gen.go b/tg/tl_messages_report_sponsored_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_report_sponsored_message_slices_gen.go +++ b/tg/tl_messages_report_sponsored_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_app_web_view_gen.go b/tg/tl_messages_request_app_web_view_gen.go index b701700e69..a066bc9d0d 100644 --- a/tg/tl_messages_request_app_web_view_gen.go +++ b/tg/tl_messages_request_app_web_view_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_app_web_view_slices_gen.go b/tg/tl_messages_request_app_web_view_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_request_app_web_view_slices_gen.go +++ b/tg/tl_messages_request_app_web_view_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_encryption_gen.go b/tg/tl_messages_request_encryption_gen.go index 7a202e4e18..2f60424433 100644 --- a/tg/tl_messages_request_encryption_gen.go +++ b/tg/tl_messages_request_encryption_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_encryption_slices_gen.go b/tg/tl_messages_request_encryption_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_request_encryption_slices_gen.go +++ b/tg/tl_messages_request_encryption_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_main_web_view_gen.go b/tg/tl_messages_request_main_web_view_gen.go index d3ebf64b4f..4c114a5daa 100644 --- a/tg/tl_messages_request_main_web_view_gen.go +++ b/tg/tl_messages_request_main_web_view_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_main_web_view_slices_gen.go b/tg/tl_messages_request_main_web_view_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_request_main_web_view_slices_gen.go +++ b/tg/tl_messages_request_main_web_view_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_simple_web_view_gen.go b/tg/tl_messages_request_simple_web_view_gen.go index 91e1e60128..059067e259 100644 --- a/tg/tl_messages_request_simple_web_view_gen.go +++ b/tg/tl_messages_request_simple_web_view_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_simple_web_view_slices_gen.go b/tg/tl_messages_request_simple_web_view_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_request_simple_web_view_slices_gen.go +++ b/tg/tl_messages_request_simple_web_view_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_url_auth_gen.go b/tg/tl_messages_request_url_auth_gen.go index d1b77e98d3..7134d37fa3 100644 --- a/tg/tl_messages_request_url_auth_gen.go +++ b/tg/tl_messages_request_url_auth_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_url_auth_slices_gen.go b/tg/tl_messages_request_url_auth_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_request_url_auth_slices_gen.go +++ b/tg/tl_messages_request_url_auth_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_web_view_gen.go b/tg/tl_messages_request_web_view_gen.go index 319970fa71..0525b9b33a 100644 --- a/tg/tl_messages_request_web_view_gen.go +++ b/tg/tl_messages_request_web_view_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_request_web_view_slices_gen.go b/tg/tl_messages_request_web_view_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_request_web_view_slices_gen.go +++ b/tg/tl_messages_request_web_view_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_default_send_as_gen.go b/tg/tl_messages_save_default_send_as_gen.go index c6b05986db..c657c6195c 100644 --- a/tg/tl_messages_save_default_send_as_gen.go +++ b/tg/tl_messages_save_default_send_as_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_default_send_as_slices_gen.go b/tg/tl_messages_save_default_send_as_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_save_default_send_as_slices_gen.go +++ b/tg/tl_messages_save_default_send_as_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_draft_gen.go b/tg/tl_messages_save_draft_gen.go index 87b477a818..7d3b140bf7 100644 --- a/tg/tl_messages_save_draft_gen.go +++ b/tg/tl_messages_save_draft_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_draft_slices_gen.go b/tg/tl_messages_save_draft_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_save_draft_slices_gen.go +++ b/tg/tl_messages_save_draft_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_gif_gen.go b/tg/tl_messages_save_gif_gen.go index db3965f6c4..582a38f8d6 100644 --- a/tg/tl_messages_save_gif_gen.go +++ b/tg/tl_messages_save_gif_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_gif_slices_gen.go b/tg/tl_messages_save_gif_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_save_gif_slices_gen.go +++ b/tg/tl_messages_save_gif_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_prepared_inline_message_gen.go b/tg/tl_messages_save_prepared_inline_message_gen.go index 08cf60376b..28c77ff2b3 100644 --- a/tg/tl_messages_save_prepared_inline_message_gen.go +++ b/tg/tl_messages_save_prepared_inline_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_prepared_inline_message_slices_gen.go b/tg/tl_messages_save_prepared_inline_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_save_prepared_inline_message_slices_gen.go +++ b/tg/tl_messages_save_prepared_inline_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_recent_sticker_gen.go b/tg/tl_messages_save_recent_sticker_gen.go index f74e235be1..dc806c3a2e 100644 --- a/tg/tl_messages_save_recent_sticker_gen.go +++ b/tg/tl_messages_save_recent_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_save_recent_sticker_slices_gen.go b/tg/tl_messages_save_recent_sticker_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_save_recent_sticker_slices_gen.go +++ b/tg/tl_messages_save_recent_sticker_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_saved_dialogs_gen.go b/tg/tl_messages_saved_dialogs_gen.go index 19d468f1e4..ef2ea92657 100644 --- a/tg/tl_messages_saved_dialogs_gen.go +++ b/tg/tl_messages_saved_dialogs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_saved_dialogs_slices_gen.go b/tg/tl_messages_saved_dialogs_slices_gen.go index df2b72e7c5..e75ea34180 100644 --- a/tg/tl_messages_saved_dialogs_slices_gen.go +++ b/tg/tl_messages_saved_dialogs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_saved_gifs_gen.go b/tg/tl_messages_saved_gifs_gen.go index 9941ea9d7a..3476c320cf 100644 --- a/tg/tl_messages_saved_gifs_gen.go +++ b/tg/tl_messages_saved_gifs_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_saved_gifs_slices_gen.go b/tg/tl_messages_saved_gifs_slices_gen.go index af17d904b8..160d94c32a 100644 --- a/tg/tl_messages_saved_gifs_slices_gen.go +++ b/tg/tl_messages_saved_gifs_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_saved_reaction_tags_gen.go b/tg/tl_messages_saved_reaction_tags_gen.go index a5371e2a20..869501f0a4 100644 --- a/tg/tl_messages_saved_reaction_tags_gen.go +++ b/tg/tl_messages_saved_reaction_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_saved_reaction_tags_slices_gen.go b/tg/tl_messages_saved_reaction_tags_slices_gen.go index ee121e127a..239af88a5e 100644 --- a/tg/tl_messages_saved_reaction_tags_slices_gen.go +++ b/tg/tl_messages_saved_reaction_tags_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_counter_gen.go b/tg/tl_messages_search_counter_gen.go index 46d6e902ed..4044d543b6 100644 --- a/tg/tl_messages_search_counter_gen.go +++ b/tg/tl_messages_search_counter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_counter_slices_gen.go b/tg/tl_messages_search_counter_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_counter_slices_gen.go +++ b/tg/tl_messages_search_counter_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_counter_vector_gen.go b/tg/tl_messages_search_counter_vector_gen.go index 6b22eb6805..897e75b66f 100644 --- a/tg/tl_messages_search_counter_vector_gen.go +++ b/tg/tl_messages_search_counter_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_counter_vector_slices_gen.go b/tg/tl_messages_search_counter_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_counter_vector_slices_gen.go +++ b/tg/tl_messages_search_counter_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_custom_emoji_gen.go b/tg/tl_messages_search_custom_emoji_gen.go index 4d7dd09457..9892a3b2a2 100644 --- a/tg/tl_messages_search_custom_emoji_gen.go +++ b/tg/tl_messages_search_custom_emoji_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_custom_emoji_slices_gen.go b/tg/tl_messages_search_custom_emoji_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_custom_emoji_slices_gen.go +++ b/tg/tl_messages_search_custom_emoji_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_emoji_sticker_sets_gen.go b/tg/tl_messages_search_emoji_sticker_sets_gen.go index 68170cbe9f..172bd5f44e 100644 --- a/tg/tl_messages_search_emoji_sticker_sets_gen.go +++ b/tg/tl_messages_search_emoji_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_emoji_sticker_sets_slices_gen.go b/tg/tl_messages_search_emoji_sticker_sets_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_emoji_sticker_sets_slices_gen.go +++ b/tg/tl_messages_search_emoji_sticker_sets_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_gen.go b/tg/tl_messages_search_gen.go index a4efc958a9..e6f56e313a 100644 --- a/tg/tl_messages_search_gen.go +++ b/tg/tl_messages_search_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_global_gen.go b/tg/tl_messages_search_global_gen.go index 89ca93c2cc..e526d1d253 100644 --- a/tg/tl_messages_search_global_gen.go +++ b/tg/tl_messages_search_global_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_global_slices_gen.go b/tg/tl_messages_search_global_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_global_slices_gen.go +++ b/tg/tl_messages_search_global_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_results_calendar_gen.go b/tg/tl_messages_search_results_calendar_gen.go index f8bcb6f3cf..2b94a01c19 100644 --- a/tg/tl_messages_search_results_calendar_gen.go +++ b/tg/tl_messages_search_results_calendar_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_results_calendar_slices_gen.go b/tg/tl_messages_search_results_calendar_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_results_calendar_slices_gen.go +++ b/tg/tl_messages_search_results_calendar_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_results_positions_gen.go b/tg/tl_messages_search_results_positions_gen.go index e13e724757..4be75777ac 100644 --- a/tg/tl_messages_search_results_positions_gen.go +++ b/tg/tl_messages_search_results_positions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_results_positions_slices_gen.go b/tg/tl_messages_search_results_positions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_results_positions_slices_gen.go +++ b/tg/tl_messages_search_results_positions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_sent_media_gen.go b/tg/tl_messages_search_sent_media_gen.go index b03d8c8908..5eb930fe9b 100644 --- a/tg/tl_messages_search_sent_media_gen.go +++ b/tg/tl_messages_search_sent_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_sent_media_slices_gen.go b/tg/tl_messages_search_sent_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_sent_media_slices_gen.go +++ b/tg/tl_messages_search_sent_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_slices_gen.go b/tg/tl_messages_search_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_slices_gen.go +++ b/tg/tl_messages_search_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_sticker_sets_gen.go b/tg/tl_messages_search_sticker_sets_gen.go index 5a85143afa..4b2a8c4cd6 100644 --- a/tg/tl_messages_search_sticker_sets_gen.go +++ b/tg/tl_messages_search_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_search_sticker_sets_slices_gen.go b/tg/tl_messages_search_sticker_sets_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_search_sticker_sets_slices_gen.go +++ b/tg/tl_messages_search_sticker_sets_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_bot_requested_peer_gen.go b/tg/tl_messages_send_bot_requested_peer_gen.go index b75ad9cc09..b23cfa0648 100644 --- a/tg/tl_messages_send_bot_requested_peer_gen.go +++ b/tg/tl_messages_send_bot_requested_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_bot_requested_peer_slices_gen.go b/tg/tl_messages_send_bot_requested_peer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_bot_requested_peer_slices_gen.go +++ b/tg/tl_messages_send_bot_requested_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_encrypted_file_gen.go b/tg/tl_messages_send_encrypted_file_gen.go index acb5106894..482d5df77d 100644 --- a/tg/tl_messages_send_encrypted_file_gen.go +++ b/tg/tl_messages_send_encrypted_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_encrypted_file_slices_gen.go b/tg/tl_messages_send_encrypted_file_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_encrypted_file_slices_gen.go +++ b/tg/tl_messages_send_encrypted_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_encrypted_gen.go b/tg/tl_messages_send_encrypted_gen.go index ae71509165..4cb13bb649 100644 --- a/tg/tl_messages_send_encrypted_gen.go +++ b/tg/tl_messages_send_encrypted_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_encrypted_service_gen.go b/tg/tl_messages_send_encrypted_service_gen.go index 9fc6cc90fc..f5e55cbc1c 100644 --- a/tg/tl_messages_send_encrypted_service_gen.go +++ b/tg/tl_messages_send_encrypted_service_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_encrypted_service_slices_gen.go b/tg/tl_messages_send_encrypted_service_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_encrypted_service_slices_gen.go +++ b/tg/tl_messages_send_encrypted_service_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_encrypted_slices_gen.go b/tg/tl_messages_send_encrypted_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_encrypted_slices_gen.go +++ b/tg/tl_messages_send_encrypted_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_inline_bot_result_gen.go b/tg/tl_messages_send_inline_bot_result_gen.go index 02ba2c2ca1..af64952199 100644 --- a/tg/tl_messages_send_inline_bot_result_gen.go +++ b/tg/tl_messages_send_inline_bot_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_inline_bot_result_slices_gen.go b/tg/tl_messages_send_inline_bot_result_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_inline_bot_result_slices_gen.go +++ b/tg/tl_messages_send_inline_bot_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_media_gen.go b/tg/tl_messages_send_media_gen.go index c6f8f576f5..9b0ce46bfb 100644 --- a/tg/tl_messages_send_media_gen.go +++ b/tg/tl_messages_send_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_media_slices_gen.go b/tg/tl_messages_send_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_media_slices_gen.go +++ b/tg/tl_messages_send_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_message_gen.go b/tg/tl_messages_send_message_gen.go index 688c7d83ce..588273eaf0 100644 --- a/tg/tl_messages_send_message_gen.go +++ b/tg/tl_messages_send_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_message_slices_gen.go b/tg/tl_messages_send_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_message_slices_gen.go +++ b/tg/tl_messages_send_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_multi_media_gen.go b/tg/tl_messages_send_multi_media_gen.go index a2eb8744a8..0dd3217e70 100644 --- a/tg/tl_messages_send_multi_media_gen.go +++ b/tg/tl_messages_send_multi_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_multi_media_slices_gen.go b/tg/tl_messages_send_multi_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_multi_media_slices_gen.go +++ b/tg/tl_messages_send_multi_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_paid_reaction_gen.go b/tg/tl_messages_send_paid_reaction_gen.go index 2ec997f5a1..79e2b1f439 100644 --- a/tg/tl_messages_send_paid_reaction_gen.go +++ b/tg/tl_messages_send_paid_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_paid_reaction_slices_gen.go b/tg/tl_messages_send_paid_reaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_paid_reaction_slices_gen.go +++ b/tg/tl_messages_send_paid_reaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_quick_reply_messages_gen.go b/tg/tl_messages_send_quick_reply_messages_gen.go index 973a5ed9f2..32301cf873 100644 --- a/tg/tl_messages_send_quick_reply_messages_gen.go +++ b/tg/tl_messages_send_quick_reply_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_quick_reply_messages_slices_gen.go b/tg/tl_messages_send_quick_reply_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_quick_reply_messages_slices_gen.go +++ b/tg/tl_messages_send_quick_reply_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_reaction_gen.go b/tg/tl_messages_send_reaction_gen.go index 15d550cc9c..ff6cec8cd6 100644 --- a/tg/tl_messages_send_reaction_gen.go +++ b/tg/tl_messages_send_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_reaction_slices_gen.go b/tg/tl_messages_send_reaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_reaction_slices_gen.go +++ b/tg/tl_messages_send_reaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_scheduled_messages_gen.go b/tg/tl_messages_send_scheduled_messages_gen.go index 9d0d838ff8..630f7adcd3 100644 --- a/tg/tl_messages_send_scheduled_messages_gen.go +++ b/tg/tl_messages_send_scheduled_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_scheduled_messages_slices_gen.go b/tg/tl_messages_send_scheduled_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_scheduled_messages_slices_gen.go +++ b/tg/tl_messages_send_scheduled_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_screenshot_notification_gen.go b/tg/tl_messages_send_screenshot_notification_gen.go index 26788146d9..7e53c9bee3 100644 --- a/tg/tl_messages_send_screenshot_notification_gen.go +++ b/tg/tl_messages_send_screenshot_notification_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_screenshot_notification_slices_gen.go b/tg/tl_messages_send_screenshot_notification_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_screenshot_notification_slices_gen.go +++ b/tg/tl_messages_send_screenshot_notification_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_vote_gen.go b/tg/tl_messages_send_vote_gen.go index 858a577d2c..1918812c7b 100644 --- a/tg/tl_messages_send_vote_gen.go +++ b/tg/tl_messages_send_vote_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_vote_slices_gen.go b/tg/tl_messages_send_vote_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_vote_slices_gen.go +++ b/tg/tl_messages_send_vote_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_web_view_data_gen.go b/tg/tl_messages_send_web_view_data_gen.go index d0dc094a11..0f23c2b0c6 100644 --- a/tg/tl_messages_send_web_view_data_gen.go +++ b/tg/tl_messages_send_web_view_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_web_view_data_slices_gen.go b/tg/tl_messages_send_web_view_data_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_web_view_data_slices_gen.go +++ b/tg/tl_messages_send_web_view_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_web_view_result_message_gen.go b/tg/tl_messages_send_web_view_result_message_gen.go index 689627b1ae..e3d9f5a4ba 100644 --- a/tg/tl_messages_send_web_view_result_message_gen.go +++ b/tg/tl_messages_send_web_view_result_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_send_web_view_result_message_slices_gen.go b/tg/tl_messages_send_web_view_result_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_send_web_view_result_message_slices_gen.go +++ b/tg/tl_messages_send_web_view_result_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_sent_encrypted_message_gen.go b/tg/tl_messages_sent_encrypted_message_gen.go index 4bf81fa931..329d64dcd8 100644 --- a/tg/tl_messages_sent_encrypted_message_gen.go +++ b/tg/tl_messages_sent_encrypted_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_sent_encrypted_message_slices_gen.go b/tg/tl_messages_sent_encrypted_message_slices_gen.go index d58541b00a..a19383e4f6 100644 --- a/tg/tl_messages_sent_encrypted_message_slices_gen.go +++ b/tg/tl_messages_sent_encrypted_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_bot_callback_answer_gen.go b/tg/tl_messages_set_bot_callback_answer_gen.go index 72fabbf940..874478d343 100644 --- a/tg/tl_messages_set_bot_callback_answer_gen.go +++ b/tg/tl_messages_set_bot_callback_answer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_bot_callback_answer_slices_gen.go b/tg/tl_messages_set_bot_callback_answer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_bot_callback_answer_slices_gen.go +++ b/tg/tl_messages_set_bot_callback_answer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_bot_precheckout_results_gen.go b/tg/tl_messages_set_bot_precheckout_results_gen.go index ad80b01b20..67cc28c5df 100644 --- a/tg/tl_messages_set_bot_precheckout_results_gen.go +++ b/tg/tl_messages_set_bot_precheckout_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_bot_precheckout_results_slices_gen.go b/tg/tl_messages_set_bot_precheckout_results_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_bot_precheckout_results_slices_gen.go +++ b/tg/tl_messages_set_bot_precheckout_results_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_bot_shipping_results_gen.go b/tg/tl_messages_set_bot_shipping_results_gen.go index 356edb46e5..83aca1f511 100644 --- a/tg/tl_messages_set_bot_shipping_results_gen.go +++ b/tg/tl_messages_set_bot_shipping_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_bot_shipping_results_slices_gen.go b/tg/tl_messages_set_bot_shipping_results_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_bot_shipping_results_slices_gen.go +++ b/tg/tl_messages_set_bot_shipping_results_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_chat_available_reactions_gen.go b/tg/tl_messages_set_chat_available_reactions_gen.go index 05c21d173b..b202015559 100644 --- a/tg/tl_messages_set_chat_available_reactions_gen.go +++ b/tg/tl_messages_set_chat_available_reactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_chat_available_reactions_slices_gen.go b/tg/tl_messages_set_chat_available_reactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_chat_available_reactions_slices_gen.go +++ b/tg/tl_messages_set_chat_available_reactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_chat_theme_gen.go b/tg/tl_messages_set_chat_theme_gen.go index 81b95b599f..61a1811d64 100644 --- a/tg/tl_messages_set_chat_theme_gen.go +++ b/tg/tl_messages_set_chat_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_chat_theme_slices_gen.go b/tg/tl_messages_set_chat_theme_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_chat_theme_slices_gen.go +++ b/tg/tl_messages_set_chat_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_chat_wall_paper_gen.go b/tg/tl_messages_set_chat_wall_paper_gen.go index 39351fa822..f3bfde1d0d 100644 --- a/tg/tl_messages_set_chat_wall_paper_gen.go +++ b/tg/tl_messages_set_chat_wall_paper_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_chat_wall_paper_slices_gen.go b/tg/tl_messages_set_chat_wall_paper_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_chat_wall_paper_slices_gen.go +++ b/tg/tl_messages_set_chat_wall_paper_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_default_history_ttl_gen.go b/tg/tl_messages_set_default_history_ttl_gen.go index 1fe8b94795..18dcd8ffab 100644 --- a/tg/tl_messages_set_default_history_ttl_gen.go +++ b/tg/tl_messages_set_default_history_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_default_history_ttl_slices_gen.go b/tg/tl_messages_set_default_history_ttl_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_default_history_ttl_slices_gen.go +++ b/tg/tl_messages_set_default_history_ttl_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_default_reaction_gen.go b/tg/tl_messages_set_default_reaction_gen.go index 1cb06b99cb..1e322d42a7 100644 --- a/tg/tl_messages_set_default_reaction_gen.go +++ b/tg/tl_messages_set_default_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_default_reaction_slices_gen.go b/tg/tl_messages_set_default_reaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_default_reaction_slices_gen.go +++ b/tg/tl_messages_set_default_reaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_encrypted_typing_gen.go b/tg/tl_messages_set_encrypted_typing_gen.go index a23ab51f12..3c73fb8d24 100644 --- a/tg/tl_messages_set_encrypted_typing_gen.go +++ b/tg/tl_messages_set_encrypted_typing_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_encrypted_typing_slices_gen.go b/tg/tl_messages_set_encrypted_typing_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_encrypted_typing_slices_gen.go +++ b/tg/tl_messages_set_encrypted_typing_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_game_score_gen.go b/tg/tl_messages_set_game_score_gen.go index 5a8f131ee3..083788ea42 100644 --- a/tg/tl_messages_set_game_score_gen.go +++ b/tg/tl_messages_set_game_score_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_game_score_slices_gen.go b/tg/tl_messages_set_game_score_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_game_score_slices_gen.go +++ b/tg/tl_messages_set_game_score_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_history_ttl_gen.go b/tg/tl_messages_set_history_ttl_gen.go index 83190ee200..af2d0cda54 100644 --- a/tg/tl_messages_set_history_ttl_gen.go +++ b/tg/tl_messages_set_history_ttl_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_history_ttl_slices_gen.go b/tg/tl_messages_set_history_ttl_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_history_ttl_slices_gen.go +++ b/tg/tl_messages_set_history_ttl_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_inline_bot_results_gen.go b/tg/tl_messages_set_inline_bot_results_gen.go index 89bfb96615..51b67e0cb3 100644 --- a/tg/tl_messages_set_inline_bot_results_gen.go +++ b/tg/tl_messages_set_inline_bot_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_inline_bot_results_slices_gen.go b/tg/tl_messages_set_inline_bot_results_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_inline_bot_results_slices_gen.go +++ b/tg/tl_messages_set_inline_bot_results_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_inline_game_score_gen.go b/tg/tl_messages_set_inline_game_score_gen.go index ca7b8ba568..d89bb93b2c 100644 --- a/tg/tl_messages_set_inline_game_score_gen.go +++ b/tg/tl_messages_set_inline_game_score_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_inline_game_score_slices_gen.go b/tg/tl_messages_set_inline_game_score_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_inline_game_score_slices_gen.go +++ b/tg/tl_messages_set_inline_game_score_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_typing_gen.go b/tg/tl_messages_set_typing_gen.go index 37bc2692f1..c5450fdfb9 100644 --- a/tg/tl_messages_set_typing_gen.go +++ b/tg/tl_messages_set_typing_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_set_typing_slices_gen.go b/tg/tl_messages_set_typing_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_set_typing_slices_gen.go +++ b/tg/tl_messages_set_typing_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_sponsored_messages_gen.go b/tg/tl_messages_sponsored_messages_gen.go index 22f3f83fc8..959753806a 100644 --- a/tg/tl_messages_sponsored_messages_gen.go +++ b/tg/tl_messages_sponsored_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_sponsored_messages_slices_gen.go b/tg/tl_messages_sponsored_messages_slices_gen.go index 620d648a8e..cf962c1882 100644 --- a/tg/tl_messages_sponsored_messages_slices_gen.go +++ b/tg/tl_messages_sponsored_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_start_bot_gen.go b/tg/tl_messages_start_bot_gen.go index b926c033ff..9ea25ed777 100644 --- a/tg/tl_messages_start_bot_gen.go +++ b/tg/tl_messages_start_bot_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_start_bot_slices_gen.go b/tg/tl_messages_start_bot_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_start_bot_slices_gen.go +++ b/tg/tl_messages_start_bot_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_start_history_import_gen.go b/tg/tl_messages_start_history_import_gen.go index 9cd8155143..0c9e174419 100644 --- a/tg/tl_messages_start_history_import_gen.go +++ b/tg/tl_messages_start_history_import_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_start_history_import_slices_gen.go b/tg/tl_messages_start_history_import_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_start_history_import_slices_gen.go +++ b/tg/tl_messages_start_history_import_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_sticker_set_gen.go b/tg/tl_messages_sticker_set_gen.go index bb7f7d6390..766ac99332 100644 --- a/tg/tl_messages_sticker_set_gen.go +++ b/tg/tl_messages_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_sticker_set_install_result_gen.go b/tg/tl_messages_sticker_set_install_result_gen.go index 0f0af2b889..657600f25a 100644 --- a/tg/tl_messages_sticker_set_install_result_gen.go +++ b/tg/tl_messages_sticker_set_install_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_sticker_set_install_result_slices_gen.go b/tg/tl_messages_sticker_set_install_result_slices_gen.go index 101de9d8a0..367e4072be 100644 --- a/tg/tl_messages_sticker_set_install_result_slices_gen.go +++ b/tg/tl_messages_sticker_set_install_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_sticker_set_slices_gen.go b/tg/tl_messages_sticker_set_slices_gen.go index b25cec8fbd..bf32f15cfd 100644 --- a/tg/tl_messages_sticker_set_slices_gen.go +++ b/tg/tl_messages_sticker_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_stickers_gen.go b/tg/tl_messages_stickers_gen.go index 5a1a9b843b..80a4b87e62 100644 --- a/tg/tl_messages_stickers_gen.go +++ b/tg/tl_messages_stickers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_stickers_slices_gen.go b/tg/tl_messages_stickers_slices_gen.go index 673e53472a..2d4f29769a 100644 --- a/tg/tl_messages_stickers_slices_gen.go +++ b/tg/tl_messages_stickers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_bot_in_attach_menu_gen.go b/tg/tl_messages_toggle_bot_in_attach_menu_gen.go index d7f70fb3cf..1b45a0ef10 100644 --- a/tg/tl_messages_toggle_bot_in_attach_menu_gen.go +++ b/tg/tl_messages_toggle_bot_in_attach_menu_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_bot_in_attach_menu_slices_gen.go b/tg/tl_messages_toggle_bot_in_attach_menu_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_toggle_bot_in_attach_menu_slices_gen.go +++ b/tg/tl_messages_toggle_bot_in_attach_menu_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_dialog_filter_tags_gen.go b/tg/tl_messages_toggle_dialog_filter_tags_gen.go index 6b00ba14cb..6ee2402937 100644 --- a/tg/tl_messages_toggle_dialog_filter_tags_gen.go +++ b/tg/tl_messages_toggle_dialog_filter_tags_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_dialog_filter_tags_slices_gen.go b/tg/tl_messages_toggle_dialog_filter_tags_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_toggle_dialog_filter_tags_slices_gen.go +++ b/tg/tl_messages_toggle_dialog_filter_tags_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_dialog_pin_gen.go b/tg/tl_messages_toggle_dialog_pin_gen.go index d79f994269..6d831a3e27 100644 --- a/tg/tl_messages_toggle_dialog_pin_gen.go +++ b/tg/tl_messages_toggle_dialog_pin_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_dialog_pin_slices_gen.go b/tg/tl_messages_toggle_dialog_pin_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_toggle_dialog_pin_slices_gen.go +++ b/tg/tl_messages_toggle_dialog_pin_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_no_forwards_gen.go b/tg/tl_messages_toggle_no_forwards_gen.go index 66b63f445c..b0ac79ebbd 100644 --- a/tg/tl_messages_toggle_no_forwards_gen.go +++ b/tg/tl_messages_toggle_no_forwards_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_no_forwards_slices_gen.go b/tg/tl_messages_toggle_no_forwards_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_toggle_no_forwards_slices_gen.go +++ b/tg/tl_messages_toggle_no_forwards_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_paid_reaction_privacy_gen.go b/tg/tl_messages_toggle_paid_reaction_privacy_gen.go index 6109085505..978239d72c 100644 --- a/tg/tl_messages_toggle_paid_reaction_privacy_gen.go +++ b/tg/tl_messages_toggle_paid_reaction_privacy_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_paid_reaction_privacy_slices_gen.go b/tg/tl_messages_toggle_paid_reaction_privacy_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_toggle_paid_reaction_privacy_slices_gen.go +++ b/tg/tl_messages_toggle_paid_reaction_privacy_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_peer_translations_gen.go b/tg/tl_messages_toggle_peer_translations_gen.go index 1685b9eaf9..ebbe23c4ec 100644 --- a/tg/tl_messages_toggle_peer_translations_gen.go +++ b/tg/tl_messages_toggle_peer_translations_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_peer_translations_slices_gen.go b/tg/tl_messages_toggle_peer_translations_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_toggle_peer_translations_slices_gen.go +++ b/tg/tl_messages_toggle_peer_translations_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_saved_dialog_pin_gen.go b/tg/tl_messages_toggle_saved_dialog_pin_gen.go index 4545ffaaeb..9a7714750e 100644 --- a/tg/tl_messages_toggle_saved_dialog_pin_gen.go +++ b/tg/tl_messages_toggle_saved_dialog_pin_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_saved_dialog_pin_slices_gen.go b/tg/tl_messages_toggle_saved_dialog_pin_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_toggle_saved_dialog_pin_slices_gen.go +++ b/tg/tl_messages_toggle_saved_dialog_pin_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_sticker_sets_gen.go b/tg/tl_messages_toggle_sticker_sets_gen.go index bbb6e9669f..a0de2768a9 100644 --- a/tg/tl_messages_toggle_sticker_sets_gen.go +++ b/tg/tl_messages_toggle_sticker_sets_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_toggle_sticker_sets_slices_gen.go b/tg/tl_messages_toggle_sticker_sets_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_toggle_sticker_sets_slices_gen.go +++ b/tg/tl_messages_toggle_sticker_sets_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_transcribe_audio_gen.go b/tg/tl_messages_transcribe_audio_gen.go index fe6f65d040..5cf64c6df7 100644 --- a/tg/tl_messages_transcribe_audio_gen.go +++ b/tg/tl_messages_transcribe_audio_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_transcribe_audio_slices_gen.go b/tg/tl_messages_transcribe_audio_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_transcribe_audio_slices_gen.go +++ b/tg/tl_messages_transcribe_audio_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_transcribed_audio_gen.go b/tg/tl_messages_transcribed_audio_gen.go index ac2e083eb7..6269987027 100644 --- a/tg/tl_messages_transcribed_audio_gen.go +++ b/tg/tl_messages_transcribed_audio_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_transcribed_audio_slices_gen.go b/tg/tl_messages_transcribed_audio_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_transcribed_audio_slices_gen.go +++ b/tg/tl_messages_transcribed_audio_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_translate_result_gen.go b/tg/tl_messages_translate_result_gen.go index e2c7d4bd00..881112fd8b 100644 --- a/tg/tl_messages_translate_result_gen.go +++ b/tg/tl_messages_translate_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_translate_result_slices_gen.go b/tg/tl_messages_translate_result_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_translate_result_slices_gen.go +++ b/tg/tl_messages_translate_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_translate_text_gen.go b/tg/tl_messages_translate_text_gen.go index 147e8c5641..73f6a1f200 100644 --- a/tg/tl_messages_translate_text_gen.go +++ b/tg/tl_messages_translate_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_translate_text_slices_gen.go b/tg/tl_messages_translate_text_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_translate_text_slices_gen.go +++ b/tg/tl_messages_translate_text_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_uninstall_sticker_set_gen.go b/tg/tl_messages_uninstall_sticker_set_gen.go index 999fb64315..f94273c9cc 100644 --- a/tg/tl_messages_uninstall_sticker_set_gen.go +++ b/tg/tl_messages_uninstall_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_uninstall_sticker_set_slices_gen.go b/tg/tl_messages_uninstall_sticker_set_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_uninstall_sticker_set_slices_gen.go +++ b/tg/tl_messages_uninstall_sticker_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_unpin_all_messages_gen.go b/tg/tl_messages_unpin_all_messages_gen.go index a3de1dbcef..361bbaedcc 100644 --- a/tg/tl_messages_unpin_all_messages_gen.go +++ b/tg/tl_messages_unpin_all_messages_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_unpin_all_messages_slices_gen.go b/tg/tl_messages_unpin_all_messages_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_unpin_all_messages_slices_gen.go +++ b/tg/tl_messages_unpin_all_messages_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_update_dialog_filter_gen.go b/tg/tl_messages_update_dialog_filter_gen.go index cc95a13d6d..db58bbd232 100644 --- a/tg/tl_messages_update_dialog_filter_gen.go +++ b/tg/tl_messages_update_dialog_filter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_update_dialog_filter_slices_gen.go b/tg/tl_messages_update_dialog_filter_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_update_dialog_filter_slices_gen.go +++ b/tg/tl_messages_update_dialog_filter_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_update_dialog_filters_order_gen.go b/tg/tl_messages_update_dialog_filters_order_gen.go index 2ab37fc2ff..f5529560d0 100644 --- a/tg/tl_messages_update_dialog_filters_order_gen.go +++ b/tg/tl_messages_update_dialog_filters_order_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_update_dialog_filters_order_slices_gen.go b/tg/tl_messages_update_dialog_filters_order_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_update_dialog_filters_order_slices_gen.go +++ b/tg/tl_messages_update_dialog_filters_order_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_update_pinned_message_gen.go b/tg/tl_messages_update_pinned_message_gen.go index d3b886fbe1..d201e5e13a 100644 --- a/tg/tl_messages_update_pinned_message_gen.go +++ b/tg/tl_messages_update_pinned_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_update_pinned_message_slices_gen.go b/tg/tl_messages_update_pinned_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_update_pinned_message_slices_gen.go +++ b/tg/tl_messages_update_pinned_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_update_saved_reaction_tag_gen.go b/tg/tl_messages_update_saved_reaction_tag_gen.go index 8c1af1b146..4ab25a8435 100644 --- a/tg/tl_messages_update_saved_reaction_tag_gen.go +++ b/tg/tl_messages_update_saved_reaction_tag_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_update_saved_reaction_tag_slices_gen.go b/tg/tl_messages_update_saved_reaction_tag_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_update_saved_reaction_tag_slices_gen.go +++ b/tg/tl_messages_update_saved_reaction_tag_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_upload_encrypted_file_gen.go b/tg/tl_messages_upload_encrypted_file_gen.go index b0048afb0a..ba57d52a30 100644 --- a/tg/tl_messages_upload_encrypted_file_gen.go +++ b/tg/tl_messages_upload_encrypted_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_upload_encrypted_file_slices_gen.go b/tg/tl_messages_upload_encrypted_file_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_upload_encrypted_file_slices_gen.go +++ b/tg/tl_messages_upload_encrypted_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_upload_imported_media_gen.go b/tg/tl_messages_upload_imported_media_gen.go index 03e89d2d46..932d92ad3d 100644 --- a/tg/tl_messages_upload_imported_media_gen.go +++ b/tg/tl_messages_upload_imported_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_upload_imported_media_slices_gen.go b/tg/tl_messages_upload_imported_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_upload_imported_media_slices_gen.go +++ b/tg/tl_messages_upload_imported_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_upload_media_gen.go b/tg/tl_messages_upload_media_gen.go index ba7a72c165..171f4e6452 100644 --- a/tg/tl_messages_upload_media_gen.go +++ b/tg/tl_messages_upload_media_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_upload_media_slices_gen.go b/tg/tl_messages_upload_media_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_upload_media_slices_gen.go +++ b/tg/tl_messages_upload_media_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_view_sponsored_message_gen.go b/tg/tl_messages_view_sponsored_message_gen.go index 53b08d40b5..b6d50c4b45 100644 --- a/tg/tl_messages_view_sponsored_message_gen.go +++ b/tg/tl_messages_view_sponsored_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_view_sponsored_message_slices_gen.go b/tg/tl_messages_view_sponsored_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_view_sponsored_message_slices_gen.go +++ b/tg/tl_messages_view_sponsored_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_votes_list_gen.go b/tg/tl_messages_votes_list_gen.go index 788d5e868e..680e2fd8b7 100644 --- a/tg/tl_messages_votes_list_gen.go +++ b/tg/tl_messages_votes_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_votes_list_slices_gen.go b/tg/tl_messages_votes_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_votes_list_slices_gen.go +++ b/tg/tl_messages_votes_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_web_page_gen.go b/tg/tl_messages_web_page_gen.go index 12c41738c0..899f99d596 100644 --- a/tg/tl_messages_web_page_gen.go +++ b/tg/tl_messages_web_page_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_messages_web_page_slices_gen.go b/tg/tl_messages_web_page_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_messages_web_page_slices_gen.go +++ b/tg/tl_messages_web_page_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_missing_invitee_gen.go b/tg/tl_missing_invitee_gen.go index 79b484ac62..da291a0c73 100644 --- a/tg/tl_missing_invitee_gen.go +++ b/tg/tl_missing_invitee_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_missing_invitee_slices_gen.go b/tg/tl_missing_invitee_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_missing_invitee_slices_gen.go +++ b/tg/tl_missing_invitee_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_my_boost_gen.go b/tg/tl_my_boost_gen.go index 94d0fdb202..cea3d0a47d 100644 --- a/tg/tl_my_boost_gen.go +++ b/tg/tl_my_boost_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_my_boost_slices_gen.go b/tg/tl_my_boost_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_my_boost_slices_gen.go +++ b/tg/tl_my_boost_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_nearest_dc_gen.go b/tg/tl_nearest_dc_gen.go index 3588228d60..cf23a77e18 100644 --- a/tg/tl_nearest_dc_gen.go +++ b/tg/tl_nearest_dc_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_nearest_dc_slices_gen.go b/tg/tl_nearest_dc_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_nearest_dc_slices_gen.go +++ b/tg/tl_nearest_dc_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_notification_sound_gen.go b/tg/tl_notification_sound_gen.go index f53a90754e..6f02cacb85 100644 --- a/tg/tl_notification_sound_gen.go +++ b/tg/tl_notification_sound_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_notification_sound_slices_gen.go b/tg/tl_notification_sound_slices_gen.go index abbb9a7d2e..1723587039 100644 --- a/tg/tl_notification_sound_slices_gen.go +++ b/tg/tl_notification_sound_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_notify_peer_gen.go b/tg/tl_notify_peer_gen.go index d6aeb3b54e..d022f54a52 100644 --- a/tg/tl_notify_peer_gen.go +++ b/tg/tl_notify_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_notify_peer_slices_gen.go b/tg/tl_notify_peer_slices_gen.go index aee68fc26d..1ba8542c9f 100644 --- a/tg/tl_notify_peer_slices_gen.go +++ b/tg/tl_notify_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_null_gen.go b/tg/tl_null_gen.go index 8f9b779262..0b00956285 100644 --- a/tg/tl_null_gen.go +++ b/tg/tl_null_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_null_slices_gen.go b/tg/tl_null_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_null_slices_gen.go +++ b/tg/tl_null_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_outbox_read_date_gen.go b/tg/tl_outbox_read_date_gen.go index f04ab75559..2ea3c30a62 100644 --- a/tg/tl_outbox_read_date_gen.go +++ b/tg/tl_outbox_read_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_outbox_read_date_slices_gen.go b/tg/tl_outbox_read_date_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_outbox_read_date_slices_gen.go +++ b/tg/tl_outbox_read_date_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_block_gen.go b/tg/tl_page_block_gen.go index d76989d29a..1e0cb82c96 100644 --- a/tg/tl_page_block_gen.go +++ b/tg/tl_page_block_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_block_slices_gen.go b/tg/tl_page_block_slices_gen.go index 4c6065c6b6..13187dedac 100644 --- a/tg/tl_page_block_slices_gen.go +++ b/tg/tl_page_block_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_caption_gen.go b/tg/tl_page_caption_gen.go index 3d69b6d739..31a1824c2d 100644 --- a/tg/tl_page_caption_gen.go +++ b/tg/tl_page_caption_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_caption_slices_gen.go b/tg/tl_page_caption_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_page_caption_slices_gen.go +++ b/tg/tl_page_caption_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_gen.go b/tg/tl_page_gen.go index b478b03166..fe5cafc3b7 100644 --- a/tg/tl_page_gen.go +++ b/tg/tl_page_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_list_item_gen.go b/tg/tl_page_list_item_gen.go index aee43c9fa4..3f776d9be9 100644 --- a/tg/tl_page_list_item_gen.go +++ b/tg/tl_page_list_item_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_list_item_slices_gen.go b/tg/tl_page_list_item_slices_gen.go index e3b7c75050..f51df56a67 100644 --- a/tg/tl_page_list_item_slices_gen.go +++ b/tg/tl_page_list_item_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_list_ordered_item_gen.go b/tg/tl_page_list_ordered_item_gen.go index e91ee6ff00..fdcca04a10 100644 --- a/tg/tl_page_list_ordered_item_gen.go +++ b/tg/tl_page_list_ordered_item_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_list_ordered_item_slices_gen.go b/tg/tl_page_list_ordered_item_slices_gen.go index ca521cd726..b3ca1115ee 100644 --- a/tg/tl_page_list_ordered_item_slices_gen.go +++ b/tg/tl_page_list_ordered_item_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_related_article_gen.go b/tg/tl_page_related_article_gen.go index 1defae7a04..523a0ea4ed 100644 --- a/tg/tl_page_related_article_gen.go +++ b/tg/tl_page_related_article_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_related_article_slices_gen.go b/tg/tl_page_related_article_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_page_related_article_slices_gen.go +++ b/tg/tl_page_related_article_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_slices_gen.go b/tg/tl_page_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_page_slices_gen.go +++ b/tg/tl_page_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_table_cell_gen.go b/tg/tl_page_table_cell_gen.go index 87faf1ad9f..008266fd1b 100644 --- a/tg/tl_page_table_cell_gen.go +++ b/tg/tl_page_table_cell_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_table_cell_slices_gen.go b/tg/tl_page_table_cell_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_page_table_cell_slices_gen.go +++ b/tg/tl_page_table_cell_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_table_row_gen.go b/tg/tl_page_table_row_gen.go index bc2f0ebae1..e5c827a8c2 100644 --- a/tg/tl_page_table_row_gen.go +++ b/tg/tl_page_table_row_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_page_table_row_slices_gen.go b/tg/tl_page_table_row_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_page_table_row_slices_gen.go +++ b/tg/tl_page_table_row_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_password_kdf_algo_gen.go b/tg/tl_password_kdf_algo_gen.go index 9957aa6d60..f42d282780 100644 --- a/tg/tl_password_kdf_algo_gen.go +++ b/tg/tl_password_kdf_algo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_password_kdf_algo_slices_gen.go b/tg/tl_password_kdf_algo_slices_gen.go index a92e5c1902..3614aa66ef 100644 --- a/tg/tl_password_kdf_algo_slices_gen.go +++ b/tg/tl_password_kdf_algo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payment_charge_gen.go b/tg/tl_payment_charge_gen.go index c8310f434b..37900ae885 100644 --- a/tg/tl_payment_charge_gen.go +++ b/tg/tl_payment_charge_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payment_charge_slices_gen.go b/tg/tl_payment_charge_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payment_charge_slices_gen.go +++ b/tg/tl_payment_charge_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payment_form_method_gen.go b/tg/tl_payment_form_method_gen.go index 2ec07946e0..eab1907bba 100644 --- a/tg/tl_payment_form_method_gen.go +++ b/tg/tl_payment_form_method_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payment_form_method_slices_gen.go b/tg/tl_payment_form_method_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payment_form_method_slices_gen.go +++ b/tg/tl_payment_form_method_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payment_requested_info_gen.go b/tg/tl_payment_requested_info_gen.go index 72c8a8ee04..9a644336e5 100644 --- a/tg/tl_payment_requested_info_gen.go +++ b/tg/tl_payment_requested_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payment_requested_info_slices_gen.go b/tg/tl_payment_requested_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payment_requested_info_slices_gen.go +++ b/tg/tl_payment_requested_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payment_saved_credentials_card_gen.go b/tg/tl_payment_saved_credentials_card_gen.go index 255ba24297..b9cce72b8c 100644 --- a/tg/tl_payment_saved_credentials_card_gen.go +++ b/tg/tl_payment_saved_credentials_card_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payment_saved_credentials_card_slices_gen.go b/tg/tl_payment_saved_credentials_card_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payment_saved_credentials_card_slices_gen.go +++ b/tg/tl_payment_saved_credentials_card_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_apply_gift_code_gen.go b/tg/tl_payments_apply_gift_code_gen.go index a84bd86b23..a786c30594 100644 --- a/tg/tl_payments_apply_gift_code_gen.go +++ b/tg/tl_payments_apply_gift_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_apply_gift_code_slices_gen.go b/tg/tl_payments_apply_gift_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_apply_gift_code_slices_gen.go +++ b/tg/tl_payments_apply_gift_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_assign_app_store_transaction_gen.go b/tg/tl_payments_assign_app_store_transaction_gen.go index 3ed1631d68..ecef2f097d 100644 --- a/tg/tl_payments_assign_app_store_transaction_gen.go +++ b/tg/tl_payments_assign_app_store_transaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_assign_app_store_transaction_slices_gen.go b/tg/tl_payments_assign_app_store_transaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_assign_app_store_transaction_slices_gen.go +++ b/tg/tl_payments_assign_app_store_transaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_assign_play_market_transaction_gen.go b/tg/tl_payments_assign_play_market_transaction_gen.go index 5b6669f498..76b2254a9f 100644 --- a/tg/tl_payments_assign_play_market_transaction_gen.go +++ b/tg/tl_payments_assign_play_market_transaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_assign_play_market_transaction_slices_gen.go b/tg/tl_payments_assign_play_market_transaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_assign_play_market_transaction_slices_gen.go +++ b/tg/tl_payments_assign_play_market_transaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_bank_card_data_gen.go b/tg/tl_payments_bank_card_data_gen.go index fe77f466f9..092e87c9dc 100644 --- a/tg/tl_payments_bank_card_data_gen.go +++ b/tg/tl_payments_bank_card_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_bank_card_data_slices_gen.go b/tg/tl_payments_bank_card_data_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_bank_card_data_slices_gen.go +++ b/tg/tl_payments_bank_card_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_bot_cancel_stars_subscription_gen.go b/tg/tl_payments_bot_cancel_stars_subscription_gen.go index aa2eb5908a..dfe84602f3 100644 --- a/tg/tl_payments_bot_cancel_stars_subscription_gen.go +++ b/tg/tl_payments_bot_cancel_stars_subscription_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_bot_cancel_stars_subscription_slices_gen.go b/tg/tl_payments_bot_cancel_stars_subscription_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_bot_cancel_stars_subscription_slices_gen.go +++ b/tg/tl_payments_bot_cancel_stars_subscription_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_can_purchase_premium_gen.go b/tg/tl_payments_can_purchase_premium_gen.go index 762808a7de..bb4ea9b962 100644 --- a/tg/tl_payments_can_purchase_premium_gen.go +++ b/tg/tl_payments_can_purchase_premium_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_can_purchase_premium_slices_gen.go b/tg/tl_payments_can_purchase_premium_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_can_purchase_premium_slices_gen.go +++ b/tg/tl_payments_can_purchase_premium_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_change_stars_subscription_gen.go b/tg/tl_payments_change_stars_subscription_gen.go index 4614a044ce..2e189a4f1c 100644 --- a/tg/tl_payments_change_stars_subscription_gen.go +++ b/tg/tl_payments_change_stars_subscription_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_change_stars_subscription_slices_gen.go b/tg/tl_payments_change_stars_subscription_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_change_stars_subscription_slices_gen.go +++ b/tg/tl_payments_change_stars_subscription_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_check_gift_code_gen.go b/tg/tl_payments_check_gift_code_gen.go index 012f8c9986..1c9e34361e 100644 --- a/tg/tl_payments_check_gift_code_gen.go +++ b/tg/tl_payments_check_gift_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_check_gift_code_slices_gen.go b/tg/tl_payments_check_gift_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_check_gift_code_slices_gen.go +++ b/tg/tl_payments_check_gift_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_checked_gift_code_gen.go b/tg/tl_payments_checked_gift_code_gen.go index 04dae9314a..48516c23ae 100644 --- a/tg/tl_payments_checked_gift_code_gen.go +++ b/tg/tl_payments_checked_gift_code_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_checked_gift_code_slices_gen.go b/tg/tl_payments_checked_gift_code_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_checked_gift_code_slices_gen.go +++ b/tg/tl_payments_checked_gift_code_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_clear_saved_info_gen.go b/tg/tl_payments_clear_saved_info_gen.go index 243944da13..a4a5cb4fc8 100644 --- a/tg/tl_payments_clear_saved_info_gen.go +++ b/tg/tl_payments_clear_saved_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_clear_saved_info_slices_gen.go b/tg/tl_payments_clear_saved_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_clear_saved_info_slices_gen.go +++ b/tg/tl_payments_clear_saved_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_convert_star_gift_gen.go b/tg/tl_payments_convert_star_gift_gen.go index ac66c8062f..6c7452a4da 100644 --- a/tg/tl_payments_convert_star_gift_gen.go +++ b/tg/tl_payments_convert_star_gift_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_convert_star_gift_slices_gen.go b/tg/tl_payments_convert_star_gift_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_convert_star_gift_slices_gen.go +++ b/tg/tl_payments_convert_star_gift_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_export_invoice_gen.go b/tg/tl_payments_export_invoice_gen.go index 463a443fb3..ba3438f797 100644 --- a/tg/tl_payments_export_invoice_gen.go +++ b/tg/tl_payments_export_invoice_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_export_invoice_slices_gen.go b/tg/tl_payments_export_invoice_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_export_invoice_slices_gen.go +++ b/tg/tl_payments_export_invoice_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_exported_invoice_gen.go b/tg/tl_payments_exported_invoice_gen.go index f22ab51ac3..3bdbb31c5f 100644 --- a/tg/tl_payments_exported_invoice_gen.go +++ b/tg/tl_payments_exported_invoice_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_exported_invoice_slices_gen.go b/tg/tl_payments_exported_invoice_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_exported_invoice_slices_gen.go +++ b/tg/tl_payments_exported_invoice_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_fulfill_stars_subscription_gen.go b/tg/tl_payments_fulfill_stars_subscription_gen.go index df30124824..623b3b67a6 100644 --- a/tg/tl_payments_fulfill_stars_subscription_gen.go +++ b/tg/tl_payments_fulfill_stars_subscription_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_fulfill_stars_subscription_slices_gen.go b/tg/tl_payments_fulfill_stars_subscription_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_fulfill_stars_subscription_slices_gen.go +++ b/tg/tl_payments_fulfill_stars_subscription_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_bank_card_data_gen.go b/tg/tl_payments_get_bank_card_data_gen.go index 5e929e5186..57bcdec33f 100644 --- a/tg/tl_payments_get_bank_card_data_gen.go +++ b/tg/tl_payments_get_bank_card_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_bank_card_data_slices_gen.go b/tg/tl_payments_get_bank_card_data_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_bank_card_data_slices_gen.go +++ b/tg/tl_payments_get_bank_card_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_giveaway_info_gen.go b/tg/tl_payments_get_giveaway_info_gen.go index 0c3496d87a..3a13871f44 100644 --- a/tg/tl_payments_get_giveaway_info_gen.go +++ b/tg/tl_payments_get_giveaway_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_giveaway_info_slices_gen.go b/tg/tl_payments_get_giveaway_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_giveaway_info_slices_gen.go +++ b/tg/tl_payments_get_giveaway_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_payment_form_gen.go b/tg/tl_payments_get_payment_form_gen.go index 610dd53b7e..adbc475282 100644 --- a/tg/tl_payments_get_payment_form_gen.go +++ b/tg/tl_payments_get_payment_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_payment_form_slices_gen.go b/tg/tl_payments_get_payment_form_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_payment_form_slices_gen.go +++ b/tg/tl_payments_get_payment_form_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_payment_receipt_gen.go b/tg/tl_payments_get_payment_receipt_gen.go index 4854a0a605..34b6b80c69 100644 --- a/tg/tl_payments_get_payment_receipt_gen.go +++ b/tg/tl_payments_get_payment_receipt_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_payment_receipt_slices_gen.go b/tg/tl_payments_get_payment_receipt_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_payment_receipt_slices_gen.go +++ b/tg/tl_payments_get_payment_receipt_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_premium_gift_code_options_gen.go b/tg/tl_payments_get_premium_gift_code_options_gen.go index e2b566ebd5..eaef6b8b59 100644 --- a/tg/tl_payments_get_premium_gift_code_options_gen.go +++ b/tg/tl_payments_get_premium_gift_code_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_premium_gift_code_options_slices_gen.go b/tg/tl_payments_get_premium_gift_code_options_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_premium_gift_code_options_slices_gen.go +++ b/tg/tl_payments_get_premium_gift_code_options_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_saved_info_gen.go b/tg/tl_payments_get_saved_info_gen.go index 9bee7ae488..dbbe169c90 100644 --- a/tg/tl_payments_get_saved_info_gen.go +++ b/tg/tl_payments_get_saved_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_saved_info_slices_gen.go b/tg/tl_payments_get_saved_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_saved_info_slices_gen.go +++ b/tg/tl_payments_get_saved_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_star_gifts_gen.go b/tg/tl_payments_get_star_gifts_gen.go index d8cd81e73c..2c8aec01af 100644 --- a/tg/tl_payments_get_star_gifts_gen.go +++ b/tg/tl_payments_get_star_gifts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_star_gifts_slices_gen.go b/tg/tl_payments_get_star_gifts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_star_gifts_slices_gen.go +++ b/tg/tl_payments_get_star_gifts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_gift_options_gen.go b/tg/tl_payments_get_stars_gift_options_gen.go index eaabf22c4e..c496e98218 100644 --- a/tg/tl_payments_get_stars_gift_options_gen.go +++ b/tg/tl_payments_get_stars_gift_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_gift_options_slices_gen.go b/tg/tl_payments_get_stars_gift_options_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_gift_options_slices_gen.go +++ b/tg/tl_payments_get_stars_gift_options_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_giveaway_options_gen.go b/tg/tl_payments_get_stars_giveaway_options_gen.go index e7e037303c..f141f89253 100644 --- a/tg/tl_payments_get_stars_giveaway_options_gen.go +++ b/tg/tl_payments_get_stars_giveaway_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_giveaway_options_slices_gen.go b/tg/tl_payments_get_stars_giveaway_options_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_giveaway_options_slices_gen.go +++ b/tg/tl_payments_get_stars_giveaway_options_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_revenue_ads_account_url_gen.go b/tg/tl_payments_get_stars_revenue_ads_account_url_gen.go index e166cf9c32..15f90728f4 100644 --- a/tg/tl_payments_get_stars_revenue_ads_account_url_gen.go +++ b/tg/tl_payments_get_stars_revenue_ads_account_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_revenue_ads_account_url_slices_gen.go b/tg/tl_payments_get_stars_revenue_ads_account_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_revenue_ads_account_url_slices_gen.go +++ b/tg/tl_payments_get_stars_revenue_ads_account_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_revenue_stats_gen.go b/tg/tl_payments_get_stars_revenue_stats_gen.go index ff77b1b639..fbf2e25e50 100644 --- a/tg/tl_payments_get_stars_revenue_stats_gen.go +++ b/tg/tl_payments_get_stars_revenue_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_revenue_stats_slices_gen.go b/tg/tl_payments_get_stars_revenue_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_revenue_stats_slices_gen.go +++ b/tg/tl_payments_get_stars_revenue_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_revenue_withdrawal_url_gen.go b/tg/tl_payments_get_stars_revenue_withdrawal_url_gen.go index e994d32a88..c9a826d6d9 100644 --- a/tg/tl_payments_get_stars_revenue_withdrawal_url_gen.go +++ b/tg/tl_payments_get_stars_revenue_withdrawal_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_revenue_withdrawal_url_slices_gen.go b/tg/tl_payments_get_stars_revenue_withdrawal_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_revenue_withdrawal_url_slices_gen.go +++ b/tg/tl_payments_get_stars_revenue_withdrawal_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_status_gen.go b/tg/tl_payments_get_stars_status_gen.go index a4f19014ff..f72b767537 100644 --- a/tg/tl_payments_get_stars_status_gen.go +++ b/tg/tl_payments_get_stars_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_status_slices_gen.go b/tg/tl_payments_get_stars_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_status_slices_gen.go +++ b/tg/tl_payments_get_stars_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_subscriptions_gen.go b/tg/tl_payments_get_stars_subscriptions_gen.go index a2a9011804..1b858b4c1a 100644 --- a/tg/tl_payments_get_stars_subscriptions_gen.go +++ b/tg/tl_payments_get_stars_subscriptions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_subscriptions_slices_gen.go b/tg/tl_payments_get_stars_subscriptions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_subscriptions_slices_gen.go +++ b/tg/tl_payments_get_stars_subscriptions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_topup_options_gen.go b/tg/tl_payments_get_stars_topup_options_gen.go index 2cd810a873..703f36c259 100644 --- a/tg/tl_payments_get_stars_topup_options_gen.go +++ b/tg/tl_payments_get_stars_topup_options_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_topup_options_slices_gen.go b/tg/tl_payments_get_stars_topup_options_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_topup_options_slices_gen.go +++ b/tg/tl_payments_get_stars_topup_options_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_transactions_by_id_gen.go b/tg/tl_payments_get_stars_transactions_by_id_gen.go index c6e3e5b1a3..7d930672d7 100644 --- a/tg/tl_payments_get_stars_transactions_by_id_gen.go +++ b/tg/tl_payments_get_stars_transactions_by_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_transactions_by_id_slices_gen.go b/tg/tl_payments_get_stars_transactions_by_id_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_transactions_by_id_slices_gen.go +++ b/tg/tl_payments_get_stars_transactions_by_id_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_transactions_gen.go b/tg/tl_payments_get_stars_transactions_gen.go index 320f5c6599..ae8c36a0a8 100644 --- a/tg/tl_payments_get_stars_transactions_gen.go +++ b/tg/tl_payments_get_stars_transactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_stars_transactions_slices_gen.go b/tg/tl_payments_get_stars_transactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_stars_transactions_slices_gen.go +++ b/tg/tl_payments_get_stars_transactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_user_star_gifts_gen.go b/tg/tl_payments_get_user_star_gifts_gen.go index 5863acb16c..dc0ae7add6 100644 --- a/tg/tl_payments_get_user_star_gifts_gen.go +++ b/tg/tl_payments_get_user_star_gifts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_get_user_star_gifts_slices_gen.go b/tg/tl_payments_get_user_star_gifts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_get_user_star_gifts_slices_gen.go +++ b/tg/tl_payments_get_user_star_gifts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_giveaway_info_gen.go b/tg/tl_payments_giveaway_info_gen.go index 8cfd8ab86b..37b6fdadf3 100644 --- a/tg/tl_payments_giveaway_info_gen.go +++ b/tg/tl_payments_giveaway_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_giveaway_info_slices_gen.go b/tg/tl_payments_giveaway_info_slices_gen.go index 552b446bb4..2471d73efe 100644 --- a/tg/tl_payments_giveaway_info_slices_gen.go +++ b/tg/tl_payments_giveaway_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_launch_prepaid_giveaway_gen.go b/tg/tl_payments_launch_prepaid_giveaway_gen.go index e8752ec552..cf0e776b4b 100644 --- a/tg/tl_payments_launch_prepaid_giveaway_gen.go +++ b/tg/tl_payments_launch_prepaid_giveaway_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_launch_prepaid_giveaway_slices_gen.go b/tg/tl_payments_launch_prepaid_giveaway_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_launch_prepaid_giveaway_slices_gen.go +++ b/tg/tl_payments_launch_prepaid_giveaway_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_payment_form_gen.go b/tg/tl_payments_payment_form_gen.go index 29fc8360b9..375c7493b3 100644 --- a/tg/tl_payments_payment_form_gen.go +++ b/tg/tl_payments_payment_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_payment_form_slices_gen.go b/tg/tl_payments_payment_form_slices_gen.go index 859bcb1b38..85a1bf3570 100644 --- a/tg/tl_payments_payment_form_slices_gen.go +++ b/tg/tl_payments_payment_form_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_payment_receipt_gen.go b/tg/tl_payments_payment_receipt_gen.go index 5b3c1934fd..efdd816343 100644 --- a/tg/tl_payments_payment_receipt_gen.go +++ b/tg/tl_payments_payment_receipt_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_payment_receipt_slices_gen.go b/tg/tl_payments_payment_receipt_slices_gen.go index 0da6697f8a..9e177c40eb 100644 --- a/tg/tl_payments_payment_receipt_slices_gen.go +++ b/tg/tl_payments_payment_receipt_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_payment_result_gen.go b/tg/tl_payments_payment_result_gen.go index e24c91f3cc..c0a0ffb993 100644 --- a/tg/tl_payments_payment_result_gen.go +++ b/tg/tl_payments_payment_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_payment_result_slices_gen.go b/tg/tl_payments_payment_result_slices_gen.go index 33ac4fb0ac..f659bc6280 100644 --- a/tg/tl_payments_payment_result_slices_gen.go +++ b/tg/tl_payments_payment_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_refund_stars_charge_gen.go b/tg/tl_payments_refund_stars_charge_gen.go index f7bdfdbb3d..ea5d873cd4 100644 --- a/tg/tl_payments_refund_stars_charge_gen.go +++ b/tg/tl_payments_refund_stars_charge_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_refund_stars_charge_slices_gen.go b/tg/tl_payments_refund_stars_charge_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_refund_stars_charge_slices_gen.go +++ b/tg/tl_payments_refund_stars_charge_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_save_star_gift_gen.go b/tg/tl_payments_save_star_gift_gen.go index fdbe4c537b..4372566870 100644 --- a/tg/tl_payments_save_star_gift_gen.go +++ b/tg/tl_payments_save_star_gift_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_save_star_gift_slices_gen.go b/tg/tl_payments_save_star_gift_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_save_star_gift_slices_gen.go +++ b/tg/tl_payments_save_star_gift_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_saved_info_gen.go b/tg/tl_payments_saved_info_gen.go index a84885fbc7..c604ff8146 100644 --- a/tg/tl_payments_saved_info_gen.go +++ b/tg/tl_payments_saved_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_saved_info_slices_gen.go b/tg/tl_payments_saved_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_saved_info_slices_gen.go +++ b/tg/tl_payments_saved_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_send_payment_form_gen.go b/tg/tl_payments_send_payment_form_gen.go index 1d6603f0bb..debf7929bc 100644 --- a/tg/tl_payments_send_payment_form_gen.go +++ b/tg/tl_payments_send_payment_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_send_payment_form_slices_gen.go b/tg/tl_payments_send_payment_form_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_send_payment_form_slices_gen.go +++ b/tg/tl_payments_send_payment_form_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_send_stars_form_gen.go b/tg/tl_payments_send_stars_form_gen.go index a61e9423c8..0075e2cb07 100644 --- a/tg/tl_payments_send_stars_form_gen.go +++ b/tg/tl_payments_send_stars_form_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_send_stars_form_slices_gen.go b/tg/tl_payments_send_stars_form_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_send_stars_form_slices_gen.go +++ b/tg/tl_payments_send_stars_form_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_star_gifts_gen.go b/tg/tl_payments_star_gifts_gen.go index 769b667df8..9c0c9d3edd 100644 --- a/tg/tl_payments_star_gifts_gen.go +++ b/tg/tl_payments_star_gifts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_star_gifts_slices_gen.go b/tg/tl_payments_star_gifts_slices_gen.go index 504fdedaf0..190b0196ec 100644 --- a/tg/tl_payments_star_gifts_slices_gen.go +++ b/tg/tl_payments_star_gifts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_stars_revenue_ads_account_url_gen.go b/tg/tl_payments_stars_revenue_ads_account_url_gen.go index a60c2217f7..c39f4dca7f 100644 --- a/tg/tl_payments_stars_revenue_ads_account_url_gen.go +++ b/tg/tl_payments_stars_revenue_ads_account_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_stars_revenue_ads_account_url_slices_gen.go b/tg/tl_payments_stars_revenue_ads_account_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_stars_revenue_ads_account_url_slices_gen.go +++ b/tg/tl_payments_stars_revenue_ads_account_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_stars_revenue_stats_gen.go b/tg/tl_payments_stars_revenue_stats_gen.go index bd3f040ec9..043634d4f0 100644 --- a/tg/tl_payments_stars_revenue_stats_gen.go +++ b/tg/tl_payments_stars_revenue_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_stars_revenue_stats_slices_gen.go b/tg/tl_payments_stars_revenue_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_stars_revenue_stats_slices_gen.go +++ b/tg/tl_payments_stars_revenue_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_stars_revenue_withdrawal_url_gen.go b/tg/tl_payments_stars_revenue_withdrawal_url_gen.go index 8e3ec4577c..771ca06601 100644 --- a/tg/tl_payments_stars_revenue_withdrawal_url_gen.go +++ b/tg/tl_payments_stars_revenue_withdrawal_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_stars_revenue_withdrawal_url_slices_gen.go b/tg/tl_payments_stars_revenue_withdrawal_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_stars_revenue_withdrawal_url_slices_gen.go +++ b/tg/tl_payments_stars_revenue_withdrawal_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_stars_status_gen.go b/tg/tl_payments_stars_status_gen.go index 8a112146aa..29accc0ebe 100644 --- a/tg/tl_payments_stars_status_gen.go +++ b/tg/tl_payments_stars_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_stars_status_slices_gen.go b/tg/tl_payments_stars_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_stars_status_slices_gen.go +++ b/tg/tl_payments_stars_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_user_star_gifts_gen.go b/tg/tl_payments_user_star_gifts_gen.go index b9a73697bb..c10d704fb6 100644 --- a/tg/tl_payments_user_star_gifts_gen.go +++ b/tg/tl_payments_user_star_gifts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_user_star_gifts_slices_gen.go b/tg/tl_payments_user_star_gifts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_user_star_gifts_slices_gen.go +++ b/tg/tl_payments_user_star_gifts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_validate_requested_info_gen.go b/tg/tl_payments_validate_requested_info_gen.go index ed24884910..e2fc7e5c77 100644 --- a/tg/tl_payments_validate_requested_info_gen.go +++ b/tg/tl_payments_validate_requested_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_validate_requested_info_slices_gen.go b/tg/tl_payments_validate_requested_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_validate_requested_info_slices_gen.go +++ b/tg/tl_payments_validate_requested_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_validated_requested_info_gen.go b/tg/tl_payments_validated_requested_info_gen.go index eceab3089c..e7aaa45e03 100644 --- a/tg/tl_payments_validated_requested_info_gen.go +++ b/tg/tl_payments_validated_requested_info_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_payments_validated_requested_info_slices_gen.go b/tg/tl_payments_validated_requested_info_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_payments_validated_requested_info_slices_gen.go +++ b/tg/tl_payments_validated_requested_info_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_blocked_gen.go b/tg/tl_peer_blocked_gen.go index 33819815d8..0c45c6a6c2 100644 --- a/tg/tl_peer_blocked_gen.go +++ b/tg/tl_peer_blocked_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_blocked_slices_gen.go b/tg/tl_peer_blocked_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_peer_blocked_slices_gen.go +++ b/tg/tl_peer_blocked_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_class_vector_gen.go b/tg/tl_peer_class_vector_gen.go index 2b524fa0d1..c01b59b0cb 100644 --- a/tg/tl_peer_class_vector_gen.go +++ b/tg/tl_peer_class_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_class_vector_slices_gen.go b/tg/tl_peer_class_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_peer_class_vector_slices_gen.go +++ b/tg/tl_peer_class_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_color_gen.go b/tg/tl_peer_color_gen.go index 3406a28c22..01c4fc932b 100644 --- a/tg/tl_peer_color_gen.go +++ b/tg/tl_peer_color_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_color_slices_gen.go b/tg/tl_peer_color_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_peer_color_slices_gen.go +++ b/tg/tl_peer_color_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_gen.go b/tg/tl_peer_gen.go index 1ed6a0b8ed..1fb7f0dfcb 100644 --- a/tg/tl_peer_gen.go +++ b/tg/tl_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_located_gen.go b/tg/tl_peer_located_gen.go index fedb7d681b..4e3d926732 100644 --- a/tg/tl_peer_located_gen.go +++ b/tg/tl_peer_located_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_located_slices_gen.go b/tg/tl_peer_located_slices_gen.go index 535cbd34b4..7439495e96 100644 --- a/tg/tl_peer_located_slices_gen.go +++ b/tg/tl_peer_located_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_notify_settings_gen.go b/tg/tl_peer_notify_settings_gen.go index adc46f0534..805d81e67e 100644 --- a/tg/tl_peer_notify_settings_gen.go +++ b/tg/tl_peer_notify_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_notify_settings_slices_gen.go b/tg/tl_peer_notify_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_peer_notify_settings_slices_gen.go +++ b/tg/tl_peer_notify_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_settings_gen.go b/tg/tl_peer_settings_gen.go index b8905d4c3d..430aaf488e 100644 --- a/tg/tl_peer_settings_gen.go +++ b/tg/tl_peer_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_settings_slices_gen.go b/tg/tl_peer_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_peer_settings_slices_gen.go +++ b/tg/tl_peer_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_slices_gen.go b/tg/tl_peer_slices_gen.go index caed8dd942..b996d49046 100644 --- a/tg/tl_peer_slices_gen.go +++ b/tg/tl_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_stories_gen.go b/tg/tl_peer_stories_gen.go index 12c5b2896a..937479a865 100644 --- a/tg/tl_peer_stories_gen.go +++ b/tg/tl_peer_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_peer_stories_slices_gen.go b/tg/tl_peer_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_peer_stories_slices_gen.go +++ b/tg/tl_peer_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_accept_call_gen.go b/tg/tl_phone_accept_call_gen.go index a42e6cbe85..287459ab50 100644 --- a/tg/tl_phone_accept_call_gen.go +++ b/tg/tl_phone_accept_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_accept_call_slices_gen.go b/tg/tl_phone_accept_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_accept_call_slices_gen.go +++ b/tg/tl_phone_accept_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_call_discard_reason_gen.go b/tg/tl_phone_call_discard_reason_gen.go index 9a18528dfb..f43208101b 100644 --- a/tg/tl_phone_call_discard_reason_gen.go +++ b/tg/tl_phone_call_discard_reason_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_call_discard_reason_slices_gen.go b/tg/tl_phone_call_discard_reason_slices_gen.go index 392958f6dc..81b079e19b 100644 --- a/tg/tl_phone_call_discard_reason_slices_gen.go +++ b/tg/tl_phone_call_discard_reason_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_call_gen.go b/tg/tl_phone_call_gen.go index 63dea15582..e303bd36eb 100644 --- a/tg/tl_phone_call_gen.go +++ b/tg/tl_phone_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_call_protocol_gen.go b/tg/tl_phone_call_protocol_gen.go index 31f7420572..1b40ef65fe 100644 --- a/tg/tl_phone_call_protocol_gen.go +++ b/tg/tl_phone_call_protocol_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_call_protocol_slices_gen.go b/tg/tl_phone_call_protocol_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_call_protocol_slices_gen.go +++ b/tg/tl_phone_call_protocol_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_call_slices_gen.go b/tg/tl_phone_call_slices_gen.go index 4a846289b4..77fa1a782f 100644 --- a/tg/tl_phone_call_slices_gen.go +++ b/tg/tl_phone_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_check_group_call_gen.go b/tg/tl_phone_check_group_call_gen.go index 14ab447dec..07d7e6fa98 100644 --- a/tg/tl_phone_check_group_call_gen.go +++ b/tg/tl_phone_check_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_check_group_call_slices_gen.go b/tg/tl_phone_check_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_check_group_call_slices_gen.go +++ b/tg/tl_phone_check_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_confirm_call_gen.go b/tg/tl_phone_confirm_call_gen.go index 3b38a49082..a930efbd5b 100644 --- a/tg/tl_phone_confirm_call_gen.go +++ b/tg/tl_phone_confirm_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_confirm_call_slices_gen.go b/tg/tl_phone_confirm_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_confirm_call_slices_gen.go +++ b/tg/tl_phone_confirm_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_connection_gen.go b/tg/tl_phone_connection_gen.go index 4514106242..6fe90fc9bf 100644 --- a/tg/tl_phone_connection_gen.go +++ b/tg/tl_phone_connection_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_connection_slices_gen.go b/tg/tl_phone_connection_slices_gen.go index e6cfaa0562..0e65299220 100644 --- a/tg/tl_phone_connection_slices_gen.go +++ b/tg/tl_phone_connection_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_create_group_call_gen.go b/tg/tl_phone_create_group_call_gen.go index 6d63cd39dc..002f5f6ea9 100644 --- a/tg/tl_phone_create_group_call_gen.go +++ b/tg/tl_phone_create_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_create_group_call_slices_gen.go b/tg/tl_phone_create_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_create_group_call_slices_gen.go +++ b/tg/tl_phone_create_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_discard_call_gen.go b/tg/tl_phone_discard_call_gen.go index 0ef271799b..ec33ce74ec 100644 --- a/tg/tl_phone_discard_call_gen.go +++ b/tg/tl_phone_discard_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_discard_call_slices_gen.go b/tg/tl_phone_discard_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_discard_call_slices_gen.go +++ b/tg/tl_phone_discard_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_discard_group_call_gen.go b/tg/tl_phone_discard_group_call_gen.go index 9490b16554..9f90caba7a 100644 --- a/tg/tl_phone_discard_group_call_gen.go +++ b/tg/tl_phone_discard_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_discard_group_call_slices_gen.go b/tg/tl_phone_discard_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_discard_group_call_slices_gen.go +++ b/tg/tl_phone_discard_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_edit_group_call_participant_gen.go b/tg/tl_phone_edit_group_call_participant_gen.go index 0a829dbf44..8d0552fa31 100644 --- a/tg/tl_phone_edit_group_call_participant_gen.go +++ b/tg/tl_phone_edit_group_call_participant_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_edit_group_call_participant_slices_gen.go b/tg/tl_phone_edit_group_call_participant_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_edit_group_call_participant_slices_gen.go +++ b/tg/tl_phone_edit_group_call_participant_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_edit_group_call_title_gen.go b/tg/tl_phone_edit_group_call_title_gen.go index 83080d8395..c56acb14f4 100644 --- a/tg/tl_phone_edit_group_call_title_gen.go +++ b/tg/tl_phone_edit_group_call_title_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_edit_group_call_title_slices_gen.go b/tg/tl_phone_edit_group_call_title_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_edit_group_call_title_slices_gen.go +++ b/tg/tl_phone_edit_group_call_title_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_export_group_call_invite_gen.go b/tg/tl_phone_export_group_call_invite_gen.go index b169d40ff9..9dc2deff9d 100644 --- a/tg/tl_phone_export_group_call_invite_gen.go +++ b/tg/tl_phone_export_group_call_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_export_group_call_invite_slices_gen.go b/tg/tl_phone_export_group_call_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_export_group_call_invite_slices_gen.go +++ b/tg/tl_phone_export_group_call_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_exported_group_call_invite_gen.go b/tg/tl_phone_exported_group_call_invite_gen.go index dc6172a1a3..0f0ed0126e 100644 --- a/tg/tl_phone_exported_group_call_invite_gen.go +++ b/tg/tl_phone_exported_group_call_invite_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_exported_group_call_invite_slices_gen.go b/tg/tl_phone_exported_group_call_invite_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_exported_group_call_invite_slices_gen.go +++ b/tg/tl_phone_exported_group_call_invite_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_call_config_gen.go b/tg/tl_phone_get_call_config_gen.go index 3e5a6947f8..1b8ea3c118 100644 --- a/tg/tl_phone_get_call_config_gen.go +++ b/tg/tl_phone_get_call_config_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_call_config_slices_gen.go b/tg/tl_phone_get_call_config_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_get_call_config_slices_gen.go +++ b/tg/tl_phone_get_call_config_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_call_gen.go b/tg/tl_phone_get_group_call_gen.go index 9834b819d6..b106333f0a 100644 --- a/tg/tl_phone_get_group_call_gen.go +++ b/tg/tl_phone_get_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_call_join_as_gen.go b/tg/tl_phone_get_group_call_join_as_gen.go index e878794f65..5d4aa32574 100644 --- a/tg/tl_phone_get_group_call_join_as_gen.go +++ b/tg/tl_phone_get_group_call_join_as_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_call_join_as_slices_gen.go b/tg/tl_phone_get_group_call_join_as_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_get_group_call_join_as_slices_gen.go +++ b/tg/tl_phone_get_group_call_join_as_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_call_slices_gen.go b/tg/tl_phone_get_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_get_group_call_slices_gen.go +++ b/tg/tl_phone_get_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_call_stream_channels_gen.go b/tg/tl_phone_get_group_call_stream_channels_gen.go index 481d49068a..9869f5f91d 100644 --- a/tg/tl_phone_get_group_call_stream_channels_gen.go +++ b/tg/tl_phone_get_group_call_stream_channels_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_call_stream_channels_slices_gen.go b/tg/tl_phone_get_group_call_stream_channels_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_get_group_call_stream_channels_slices_gen.go +++ b/tg/tl_phone_get_group_call_stream_channels_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_call_stream_rtmp_url_gen.go b/tg/tl_phone_get_group_call_stream_rtmp_url_gen.go index 2bd11c2647..a520b4c5c8 100644 --- a/tg/tl_phone_get_group_call_stream_rtmp_url_gen.go +++ b/tg/tl_phone_get_group_call_stream_rtmp_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_call_stream_rtmp_url_slices_gen.go b/tg/tl_phone_get_group_call_stream_rtmp_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_get_group_call_stream_rtmp_url_slices_gen.go +++ b/tg/tl_phone_get_group_call_stream_rtmp_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_participants_gen.go b/tg/tl_phone_get_group_participants_gen.go index 76b366b4a4..da20840548 100644 --- a/tg/tl_phone_get_group_participants_gen.go +++ b/tg/tl_phone_get_group_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_get_group_participants_slices_gen.go b/tg/tl_phone_get_group_participants_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_get_group_participants_slices_gen.go +++ b/tg/tl_phone_get_group_participants_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_group_call_gen.go b/tg/tl_phone_group_call_gen.go index d43366f387..da594ab0f2 100644 --- a/tg/tl_phone_group_call_gen.go +++ b/tg/tl_phone_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_group_call_slices_gen.go b/tg/tl_phone_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_group_call_slices_gen.go +++ b/tg/tl_phone_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_group_call_stream_channels_gen.go b/tg/tl_phone_group_call_stream_channels_gen.go index 70cbe43813..70925c4c13 100644 --- a/tg/tl_phone_group_call_stream_channels_gen.go +++ b/tg/tl_phone_group_call_stream_channels_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_group_call_stream_channels_slices_gen.go b/tg/tl_phone_group_call_stream_channels_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_group_call_stream_channels_slices_gen.go +++ b/tg/tl_phone_group_call_stream_channels_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_group_call_stream_rtmp_url_gen.go b/tg/tl_phone_group_call_stream_rtmp_url_gen.go index d98cd77473..a969899849 100644 --- a/tg/tl_phone_group_call_stream_rtmp_url_gen.go +++ b/tg/tl_phone_group_call_stream_rtmp_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_group_call_stream_rtmp_url_slices_gen.go b/tg/tl_phone_group_call_stream_rtmp_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_group_call_stream_rtmp_url_slices_gen.go +++ b/tg/tl_phone_group_call_stream_rtmp_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_group_participants_gen.go b/tg/tl_phone_group_participants_gen.go index 988d7ae278..c0817222da 100644 --- a/tg/tl_phone_group_participants_gen.go +++ b/tg/tl_phone_group_participants_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_group_participants_slices_gen.go b/tg/tl_phone_group_participants_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_group_participants_slices_gen.go +++ b/tg/tl_phone_group_participants_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_invite_to_group_call_gen.go b/tg/tl_phone_invite_to_group_call_gen.go index bbc7c8873b..9ea15cf5a5 100644 --- a/tg/tl_phone_invite_to_group_call_gen.go +++ b/tg/tl_phone_invite_to_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_invite_to_group_call_slices_gen.go b/tg/tl_phone_invite_to_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_invite_to_group_call_slices_gen.go +++ b/tg/tl_phone_invite_to_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_join_as_peers_gen.go b/tg/tl_phone_join_as_peers_gen.go index b3c3b86513..3b13f31ecb 100644 --- a/tg/tl_phone_join_as_peers_gen.go +++ b/tg/tl_phone_join_as_peers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_join_as_peers_slices_gen.go b/tg/tl_phone_join_as_peers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_join_as_peers_slices_gen.go +++ b/tg/tl_phone_join_as_peers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_join_group_call_gen.go b/tg/tl_phone_join_group_call_gen.go index 1e2725df3a..8865c8bc87 100644 --- a/tg/tl_phone_join_group_call_gen.go +++ b/tg/tl_phone_join_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_join_group_call_presentation_gen.go b/tg/tl_phone_join_group_call_presentation_gen.go index 6b63823179..943fa78744 100644 --- a/tg/tl_phone_join_group_call_presentation_gen.go +++ b/tg/tl_phone_join_group_call_presentation_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_join_group_call_presentation_slices_gen.go b/tg/tl_phone_join_group_call_presentation_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_join_group_call_presentation_slices_gen.go +++ b/tg/tl_phone_join_group_call_presentation_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_join_group_call_slices_gen.go b/tg/tl_phone_join_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_join_group_call_slices_gen.go +++ b/tg/tl_phone_join_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_leave_group_call_gen.go b/tg/tl_phone_leave_group_call_gen.go index c803f8a330..344ebfde88 100644 --- a/tg/tl_phone_leave_group_call_gen.go +++ b/tg/tl_phone_leave_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_leave_group_call_presentation_gen.go b/tg/tl_phone_leave_group_call_presentation_gen.go index ccf9e500c8..f16df78a73 100644 --- a/tg/tl_phone_leave_group_call_presentation_gen.go +++ b/tg/tl_phone_leave_group_call_presentation_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_leave_group_call_presentation_slices_gen.go b/tg/tl_phone_leave_group_call_presentation_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_leave_group_call_presentation_slices_gen.go +++ b/tg/tl_phone_leave_group_call_presentation_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_leave_group_call_slices_gen.go b/tg/tl_phone_leave_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_leave_group_call_slices_gen.go +++ b/tg/tl_phone_leave_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_phone_call_gen.go b/tg/tl_phone_phone_call_gen.go index 0c6b3adb5f..c020db44b0 100644 --- a/tg/tl_phone_phone_call_gen.go +++ b/tg/tl_phone_phone_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_phone_call_slices_gen.go b/tg/tl_phone_phone_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_phone_call_slices_gen.go +++ b/tg/tl_phone_phone_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_received_call_gen.go b/tg/tl_phone_received_call_gen.go index 853b572095..b8409906d3 100644 --- a/tg/tl_phone_received_call_gen.go +++ b/tg/tl_phone_received_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_received_call_slices_gen.go b/tg/tl_phone_received_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_received_call_slices_gen.go +++ b/tg/tl_phone_received_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_request_call_gen.go b/tg/tl_phone_request_call_gen.go index 5b53d5b1cd..dc9c9b03ab 100644 --- a/tg/tl_phone_request_call_gen.go +++ b/tg/tl_phone_request_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_request_call_slices_gen.go b/tg/tl_phone_request_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_request_call_slices_gen.go +++ b/tg/tl_phone_request_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_save_call_debug_gen.go b/tg/tl_phone_save_call_debug_gen.go index a3f2fe212b..f08dccc413 100644 --- a/tg/tl_phone_save_call_debug_gen.go +++ b/tg/tl_phone_save_call_debug_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_save_call_debug_slices_gen.go b/tg/tl_phone_save_call_debug_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_save_call_debug_slices_gen.go +++ b/tg/tl_phone_save_call_debug_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_save_call_log_gen.go b/tg/tl_phone_save_call_log_gen.go index f4412497a4..d7d9a829f1 100644 --- a/tg/tl_phone_save_call_log_gen.go +++ b/tg/tl_phone_save_call_log_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_save_call_log_slices_gen.go b/tg/tl_phone_save_call_log_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_save_call_log_slices_gen.go +++ b/tg/tl_phone_save_call_log_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_save_default_group_call_join_as_gen.go b/tg/tl_phone_save_default_group_call_join_as_gen.go index 72c90e30fd..b27a33359c 100644 --- a/tg/tl_phone_save_default_group_call_join_as_gen.go +++ b/tg/tl_phone_save_default_group_call_join_as_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_save_default_group_call_join_as_slices_gen.go b/tg/tl_phone_save_default_group_call_join_as_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_save_default_group_call_join_as_slices_gen.go +++ b/tg/tl_phone_save_default_group_call_join_as_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_send_signaling_data_gen.go b/tg/tl_phone_send_signaling_data_gen.go index 86294f9d64..4766b0298b 100644 --- a/tg/tl_phone_send_signaling_data_gen.go +++ b/tg/tl_phone_send_signaling_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_send_signaling_data_slices_gen.go b/tg/tl_phone_send_signaling_data_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_send_signaling_data_slices_gen.go +++ b/tg/tl_phone_send_signaling_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_set_call_rating_gen.go b/tg/tl_phone_set_call_rating_gen.go index 6cf3f8e986..ea220bd1cf 100644 --- a/tg/tl_phone_set_call_rating_gen.go +++ b/tg/tl_phone_set_call_rating_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_set_call_rating_slices_gen.go b/tg/tl_phone_set_call_rating_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_set_call_rating_slices_gen.go +++ b/tg/tl_phone_set_call_rating_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_start_scheduled_group_call_gen.go b/tg/tl_phone_start_scheduled_group_call_gen.go index 5e5035c9b7..66629dc95a 100644 --- a/tg/tl_phone_start_scheduled_group_call_gen.go +++ b/tg/tl_phone_start_scheduled_group_call_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_start_scheduled_group_call_slices_gen.go b/tg/tl_phone_start_scheduled_group_call_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_start_scheduled_group_call_slices_gen.go +++ b/tg/tl_phone_start_scheduled_group_call_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_toggle_group_call_record_gen.go b/tg/tl_phone_toggle_group_call_record_gen.go index 557d4e9764..390f218b1c 100644 --- a/tg/tl_phone_toggle_group_call_record_gen.go +++ b/tg/tl_phone_toggle_group_call_record_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_toggle_group_call_record_slices_gen.go b/tg/tl_phone_toggle_group_call_record_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_toggle_group_call_record_slices_gen.go +++ b/tg/tl_phone_toggle_group_call_record_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_toggle_group_call_settings_gen.go b/tg/tl_phone_toggle_group_call_settings_gen.go index f3c1096cb0..a2cd440e2d 100644 --- a/tg/tl_phone_toggle_group_call_settings_gen.go +++ b/tg/tl_phone_toggle_group_call_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_toggle_group_call_settings_slices_gen.go b/tg/tl_phone_toggle_group_call_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_toggle_group_call_settings_slices_gen.go +++ b/tg/tl_phone_toggle_group_call_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_toggle_group_call_start_subscription_gen.go b/tg/tl_phone_toggle_group_call_start_subscription_gen.go index 6af9f2f23a..8ed4b7210b 100644 --- a/tg/tl_phone_toggle_group_call_start_subscription_gen.go +++ b/tg/tl_phone_toggle_group_call_start_subscription_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_phone_toggle_group_call_start_subscription_slices_gen.go b/tg/tl_phone_toggle_group_call_start_subscription_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_phone_toggle_group_call_start_subscription_slices_gen.go +++ b/tg/tl_phone_toggle_group_call_start_subscription_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photo_gen.go b/tg/tl_photo_gen.go index 88086ad183..1770f9d6cc 100644 --- a/tg/tl_photo_gen.go +++ b/tg/tl_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photo_size_gen.go b/tg/tl_photo_size_gen.go index 4710f59aab..9066c922b7 100644 --- a/tg/tl_photo_size_gen.go +++ b/tg/tl_photo_size_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photo_size_slices_gen.go b/tg/tl_photo_size_slices_gen.go index 6b4df0665e..5e146e3753 100644 --- a/tg/tl_photo_size_slices_gen.go +++ b/tg/tl_photo_size_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photo_slices_gen.go b/tg/tl_photo_slices_gen.go index 4807650d31..c41702ee25 100644 --- a/tg/tl_photo_slices_gen.go +++ b/tg/tl_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_delete_photos_gen.go b/tg/tl_photos_delete_photos_gen.go index d7f78cbd7c..fe353bb7b3 100644 --- a/tg/tl_photos_delete_photos_gen.go +++ b/tg/tl_photos_delete_photos_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_delete_photos_slices_gen.go b/tg/tl_photos_delete_photos_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_photos_delete_photos_slices_gen.go +++ b/tg/tl_photos_delete_photos_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_get_user_photos_gen.go b/tg/tl_photos_get_user_photos_gen.go index 9634df012f..ae0f3efb94 100644 --- a/tg/tl_photos_get_user_photos_gen.go +++ b/tg/tl_photos_get_user_photos_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_get_user_photos_slices_gen.go b/tg/tl_photos_get_user_photos_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_photos_get_user_photos_slices_gen.go +++ b/tg/tl_photos_get_user_photos_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_photo_gen.go b/tg/tl_photos_photo_gen.go index 220380d076..61643745ca 100644 --- a/tg/tl_photos_photo_gen.go +++ b/tg/tl_photos_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_photo_slices_gen.go b/tg/tl_photos_photo_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_photos_photo_slices_gen.go +++ b/tg/tl_photos_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_photos_gen.go b/tg/tl_photos_photos_gen.go index ac6e398395..d7deaf9426 100644 --- a/tg/tl_photos_photos_gen.go +++ b/tg/tl_photos_photos_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_photos_slices_gen.go b/tg/tl_photos_photos_slices_gen.go index 66ea5e333b..ccf5444971 100644 --- a/tg/tl_photos_photos_slices_gen.go +++ b/tg/tl_photos_photos_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_update_profile_photo_gen.go b/tg/tl_photos_update_profile_photo_gen.go index 247e0c40f2..d0229f1ef1 100644 --- a/tg/tl_photos_update_profile_photo_gen.go +++ b/tg/tl_photos_update_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_update_profile_photo_slices_gen.go b/tg/tl_photos_update_profile_photo_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_photos_update_profile_photo_slices_gen.go +++ b/tg/tl_photos_update_profile_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_upload_contact_profile_photo_gen.go b/tg/tl_photos_upload_contact_profile_photo_gen.go index 6cea55b288..66b00b4eab 100644 --- a/tg/tl_photos_upload_contact_profile_photo_gen.go +++ b/tg/tl_photos_upload_contact_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_upload_contact_profile_photo_slices_gen.go b/tg/tl_photos_upload_contact_profile_photo_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_photos_upload_contact_profile_photo_slices_gen.go +++ b/tg/tl_photos_upload_contact_profile_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_upload_profile_photo_gen.go b/tg/tl_photos_upload_profile_photo_gen.go index 4bcc23ce66..bf9a49c1aa 100644 --- a/tg/tl_photos_upload_profile_photo_gen.go +++ b/tg/tl_photos_upload_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_photos_upload_profile_photo_slices_gen.go b/tg/tl_photos_upload_profile_photo_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_photos_upload_profile_photo_slices_gen.go +++ b/tg/tl_photos_upload_profile_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_poll_answer_gen.go b/tg/tl_poll_answer_gen.go index d9da62d72e..97026015b8 100644 --- a/tg/tl_poll_answer_gen.go +++ b/tg/tl_poll_answer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_poll_answer_slices_gen.go b/tg/tl_poll_answer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_poll_answer_slices_gen.go +++ b/tg/tl_poll_answer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_poll_answer_voters_gen.go b/tg/tl_poll_answer_voters_gen.go index cc47f70c48..f1fd68e7a4 100644 --- a/tg/tl_poll_answer_voters_gen.go +++ b/tg/tl_poll_answer_voters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_poll_answer_voters_slices_gen.go b/tg/tl_poll_answer_voters_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_poll_answer_voters_slices_gen.go +++ b/tg/tl_poll_answer_voters_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_poll_gen.go b/tg/tl_poll_gen.go index 6ccb47bf88..09ead8be78 100644 --- a/tg/tl_poll_gen.go +++ b/tg/tl_poll_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_poll_results_gen.go b/tg/tl_poll_results_gen.go index 06bcd001b8..a3281b69e6 100644 --- a/tg/tl_poll_results_gen.go +++ b/tg/tl_poll_results_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_poll_results_slices_gen.go b/tg/tl_poll_results_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_poll_results_slices_gen.go +++ b/tg/tl_poll_results_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_poll_slices_gen.go b/tg/tl_poll_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_poll_slices_gen.go +++ b/tg/tl_poll_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_popular_contact_gen.go b/tg/tl_popular_contact_gen.go index 71e219b1b5..bf9f0b7218 100644 --- a/tg/tl_popular_contact_gen.go +++ b/tg/tl_popular_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_popular_contact_slices_gen.go b/tg/tl_popular_contact_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_popular_contact_slices_gen.go +++ b/tg/tl_popular_contact_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_post_address_gen.go b/tg/tl_post_address_gen.go index ac962c60ed..3551d83fcf 100644 --- a/tg/tl_post_address_gen.go +++ b/tg/tl_post_address_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_post_address_slices_gen.go b/tg/tl_post_address_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_post_address_slices_gen.go +++ b/tg/tl_post_address_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_post_interaction_counters_gen.go b/tg/tl_post_interaction_counters_gen.go index 5b2671f4f3..16747455d5 100644 --- a/tg/tl_post_interaction_counters_gen.go +++ b/tg/tl_post_interaction_counters_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_post_interaction_counters_slices_gen.go b/tg/tl_post_interaction_counters_slices_gen.go index 3a55e192c9..95d6a07eed 100644 --- a/tg/tl_post_interaction_counters_slices_gen.go +++ b/tg/tl_post_interaction_counters_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_apply_boost_gen.go b/tg/tl_premium_apply_boost_gen.go index 9135a61c47..b04c5cd8ed 100644 --- a/tg/tl_premium_apply_boost_gen.go +++ b/tg/tl_premium_apply_boost_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_apply_boost_slices_gen.go b/tg/tl_premium_apply_boost_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_apply_boost_slices_gen.go +++ b/tg/tl_premium_apply_boost_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_boosts_list_gen.go b/tg/tl_premium_boosts_list_gen.go index 90f4a54480..fc7ccd95dd 100644 --- a/tg/tl_premium_boosts_list_gen.go +++ b/tg/tl_premium_boosts_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_boosts_list_slices_gen.go b/tg/tl_premium_boosts_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_boosts_list_slices_gen.go +++ b/tg/tl_premium_boosts_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_boosts_status_gen.go b/tg/tl_premium_boosts_status_gen.go index 959d6833a6..b64ea7c6e9 100644 --- a/tg/tl_premium_boosts_status_gen.go +++ b/tg/tl_premium_boosts_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_boosts_status_slices_gen.go b/tg/tl_premium_boosts_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_boosts_status_slices_gen.go +++ b/tg/tl_premium_boosts_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_get_boosts_list_gen.go b/tg/tl_premium_get_boosts_list_gen.go index a46a3e6c1b..441ff6a746 100644 --- a/tg/tl_premium_get_boosts_list_gen.go +++ b/tg/tl_premium_get_boosts_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_get_boosts_list_slices_gen.go b/tg/tl_premium_get_boosts_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_get_boosts_list_slices_gen.go +++ b/tg/tl_premium_get_boosts_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_get_boosts_status_gen.go b/tg/tl_premium_get_boosts_status_gen.go index 6d56234049..6118d5971b 100644 --- a/tg/tl_premium_get_boosts_status_gen.go +++ b/tg/tl_premium_get_boosts_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_get_boosts_status_slices_gen.go b/tg/tl_premium_get_boosts_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_get_boosts_status_slices_gen.go +++ b/tg/tl_premium_get_boosts_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_get_my_boosts_gen.go b/tg/tl_premium_get_my_boosts_gen.go index 0b7cd65dfa..1ceb195b8b 100644 --- a/tg/tl_premium_get_my_boosts_gen.go +++ b/tg/tl_premium_get_my_boosts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_get_my_boosts_slices_gen.go b/tg/tl_premium_get_my_boosts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_get_my_boosts_slices_gen.go +++ b/tg/tl_premium_get_my_boosts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_get_user_boosts_gen.go b/tg/tl_premium_get_user_boosts_gen.go index f4e28db288..7db40cdba8 100644 --- a/tg/tl_premium_get_user_boosts_gen.go +++ b/tg/tl_premium_get_user_boosts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_get_user_boosts_slices_gen.go b/tg/tl_premium_get_user_boosts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_get_user_boosts_slices_gen.go +++ b/tg/tl_premium_get_user_boosts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_gift_code_option_gen.go b/tg/tl_premium_gift_code_option_gen.go index 9f5c906899..99f0f72e4d 100644 --- a/tg/tl_premium_gift_code_option_gen.go +++ b/tg/tl_premium_gift_code_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_gift_code_option_slices_gen.go b/tg/tl_premium_gift_code_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_gift_code_option_slices_gen.go +++ b/tg/tl_premium_gift_code_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_gift_code_option_vector_gen.go b/tg/tl_premium_gift_code_option_vector_gen.go index 6c678b4dec..c5dee98246 100644 --- a/tg/tl_premium_gift_code_option_vector_gen.go +++ b/tg/tl_premium_gift_code_option_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_gift_code_option_vector_slices_gen.go b/tg/tl_premium_gift_code_option_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_gift_code_option_vector_slices_gen.go +++ b/tg/tl_premium_gift_code_option_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_gift_option_gen.go b/tg/tl_premium_gift_option_gen.go index 772779a8b3..f1fb74956f 100644 --- a/tg/tl_premium_gift_option_gen.go +++ b/tg/tl_premium_gift_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_gift_option_slices_gen.go b/tg/tl_premium_gift_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_gift_option_slices_gen.go +++ b/tg/tl_premium_gift_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_my_boosts_gen.go b/tg/tl_premium_my_boosts_gen.go index 15fbc56930..d43f80cd9f 100644 --- a/tg/tl_premium_my_boosts_gen.go +++ b/tg/tl_premium_my_boosts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_my_boosts_slices_gen.go b/tg/tl_premium_my_boosts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_my_boosts_slices_gen.go +++ b/tg/tl_premium_my_boosts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_subscription_option_gen.go b/tg/tl_premium_subscription_option_gen.go index 4992ea0869..941d5ae248 100644 --- a/tg/tl_premium_subscription_option_gen.go +++ b/tg/tl_premium_subscription_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_premium_subscription_option_slices_gen.go b/tg/tl_premium_subscription_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_premium_subscription_option_slices_gen.go +++ b/tg/tl_premium_subscription_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_prepaid_giveaway_gen.go b/tg/tl_prepaid_giveaway_gen.go index 7af1a3b671..0b74b3bc6c 100644 --- a/tg/tl_prepaid_giveaway_gen.go +++ b/tg/tl_prepaid_giveaway_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_prepaid_giveaway_slices_gen.go b/tg/tl_prepaid_giveaway_slices_gen.go index b9db13ecb6..ddeee63dd9 100644 --- a/tg/tl_prepaid_giveaway_slices_gen.go +++ b/tg/tl_prepaid_giveaway_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_privacy_key_gen.go b/tg/tl_privacy_key_gen.go index 74ca91e8a0..a59c74ed83 100644 --- a/tg/tl_privacy_key_gen.go +++ b/tg/tl_privacy_key_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_privacy_key_slices_gen.go b/tg/tl_privacy_key_slices_gen.go index dda1b965c5..5a4d872eb7 100644 --- a/tg/tl_privacy_key_slices_gen.go +++ b/tg/tl_privacy_key_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_privacy_rule_gen.go b/tg/tl_privacy_rule_gen.go index 656de16434..b44e9ad378 100644 --- a/tg/tl_privacy_rule_gen.go +++ b/tg/tl_privacy_rule_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_privacy_rule_slices_gen.go b/tg/tl_privacy_rule_slices_gen.go index bd8cb3e1da..106f64e05f 100644 --- a/tg/tl_privacy_rule_slices_gen.go +++ b/tg/tl_privacy_rule_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_public_forward_gen.go b/tg/tl_public_forward_gen.go index 6d22e990b5..305b2ad23e 100644 --- a/tg/tl_public_forward_gen.go +++ b/tg/tl_public_forward_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_public_forward_slices_gen.go b/tg/tl_public_forward_slices_gen.go index fc89ae7dd3..b3e2c3b88b 100644 --- a/tg/tl_public_forward_slices_gen.go +++ b/tg/tl_public_forward_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_quick_reply_gen.go b/tg/tl_quick_reply_gen.go index 9f652e5753..4fa5988913 100644 --- a/tg/tl_quick_reply_gen.go +++ b/tg/tl_quick_reply_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_quick_reply_slices_gen.go b/tg/tl_quick_reply_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_quick_reply_slices_gen.go +++ b/tg/tl_quick_reply_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reaction_count_gen.go b/tg/tl_reaction_count_gen.go index 4c31630ab5..baa239c0cd 100644 --- a/tg/tl_reaction_count_gen.go +++ b/tg/tl_reaction_count_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reaction_count_slices_gen.go b/tg/tl_reaction_count_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_reaction_count_slices_gen.go +++ b/tg/tl_reaction_count_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reaction_gen.go b/tg/tl_reaction_gen.go index 0f488d77a2..faddad3bdf 100644 --- a/tg/tl_reaction_gen.go +++ b/tg/tl_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reaction_notifications_from_gen.go b/tg/tl_reaction_notifications_from_gen.go index 6babc34d7e..fde26dff1e 100644 --- a/tg/tl_reaction_notifications_from_gen.go +++ b/tg/tl_reaction_notifications_from_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reaction_notifications_from_slices_gen.go b/tg/tl_reaction_notifications_from_slices_gen.go index a451fbdebe..27d6cba5e3 100644 --- a/tg/tl_reaction_notifications_from_slices_gen.go +++ b/tg/tl_reaction_notifications_from_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reaction_slices_gen.go b/tg/tl_reaction_slices_gen.go index 1057b8dd65..6aa3a677f9 100644 --- a/tg/tl_reaction_slices_gen.go +++ b/tg/tl_reaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reactions_notify_settings_gen.go b/tg/tl_reactions_notify_settings_gen.go index 05ff5daf7b..d1d3fbee90 100644 --- a/tg/tl_reactions_notify_settings_gen.go +++ b/tg/tl_reactions_notify_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reactions_notify_settings_slices_gen.go b/tg/tl_reactions_notify_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_reactions_notify_settings_slices_gen.go +++ b/tg/tl_reactions_notify_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_read_participant_date_gen.go b/tg/tl_read_participant_date_gen.go index 7c155b7c02..13ff94abe1 100644 --- a/tg/tl_read_participant_date_gen.go +++ b/tg/tl_read_participant_date_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_read_participant_date_slices_gen.go b/tg/tl_read_participant_date_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_read_participant_date_slices_gen.go +++ b/tg/tl_read_participant_date_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_read_participant_date_vector_gen.go b/tg/tl_read_participant_date_vector_gen.go index deb218d4ee..30bd137f8e 100644 --- a/tg/tl_read_participant_date_vector_gen.go +++ b/tg/tl_read_participant_date_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_read_participant_date_vector_slices_gen.go b/tg/tl_read_participant_date_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_read_participant_date_vector_slices_gen.go +++ b/tg/tl_read_participant_date_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_received_notify_message_gen.go b/tg/tl_received_notify_message_gen.go index dffb0225e0..a17997942e 100644 --- a/tg/tl_received_notify_message_gen.go +++ b/tg/tl_received_notify_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_received_notify_message_slices_gen.go b/tg/tl_received_notify_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_received_notify_message_slices_gen.go +++ b/tg/tl_received_notify_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_received_notify_message_vector_gen.go b/tg/tl_received_notify_message_vector_gen.go index 33b2f13f90..a7813e6908 100644 --- a/tg/tl_received_notify_message_vector_gen.go +++ b/tg/tl_received_notify_message_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_received_notify_message_vector_slices_gen.go b/tg/tl_received_notify_message_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_received_notify_message_vector_slices_gen.go +++ b/tg/tl_received_notify_message_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_recent_me_url_gen.go b/tg/tl_recent_me_url_gen.go index 379b56ccba..e40205c1ac 100644 --- a/tg/tl_recent_me_url_gen.go +++ b/tg/tl_recent_me_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_recent_me_url_slices_gen.go b/tg/tl_recent_me_url_slices_gen.go index 27bf6ef711..ee728721f4 100644 --- a/tg/tl_recent_me_url_slices_gen.go +++ b/tg/tl_recent_me_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_registry_gen.go b/tg/tl_registry_gen.go index 85aaabf850..b0681f029c 100644 --- a/tg/tl_registry_gen.go +++ b/tg/tl_registry_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reply_markup_gen.go b/tg/tl_reply_markup_gen.go index 5bb68916b3..c4d5819df8 100644 --- a/tg/tl_reply_markup_gen.go +++ b/tg/tl_reply_markup_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_reply_markup_slices_gen.go b/tg/tl_reply_markup_slices_gen.go index 19f89adb66..f1bd1a763d 100644 --- a/tg/tl_reply_markup_slices_gen.go +++ b/tg/tl_reply_markup_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_report_reason_gen.go b/tg/tl_report_reason_gen.go index 3021ae55bd..6624780a2b 100644 --- a/tg/tl_report_reason_gen.go +++ b/tg/tl_report_reason_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_report_reason_slices_gen.go b/tg/tl_report_reason_slices_gen.go index 9ffc79c8c5..f343ecab67 100644 --- a/tg/tl_report_reason_slices_gen.go +++ b/tg/tl_report_reason_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_report_result_gen.go b/tg/tl_report_result_gen.go index 88b43b79c9..b2259be1d8 100644 --- a/tg/tl_report_result_gen.go +++ b/tg/tl_report_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_report_result_slices_gen.go b/tg/tl_report_result_slices_gen.go index 034283b305..3c750ceb97 100644 --- a/tg/tl_report_result_slices_gen.go +++ b/tg/tl_report_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_request_peer_type_gen.go b/tg/tl_request_peer_type_gen.go index da2a835246..7b7a632fbe 100644 --- a/tg/tl_request_peer_type_gen.go +++ b/tg/tl_request_peer_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_request_peer_type_slices_gen.go b/tg/tl_request_peer_type_slices_gen.go index 6ceb8ea858..35a63d0c78 100644 --- a/tg/tl_request_peer_type_slices_gen.go +++ b/tg/tl_request_peer_type_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_requested_peer_gen.go b/tg/tl_requested_peer_gen.go index 5f57f9360f..f60f08dcc9 100644 --- a/tg/tl_requested_peer_gen.go +++ b/tg/tl_requested_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_requested_peer_slices_gen.go b/tg/tl_requested_peer_slices_gen.go index a3ef53dd49..822e3d9c02 100644 --- a/tg/tl_requested_peer_slices_gen.go +++ b/tg/tl_requested_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_restriction_reason_gen.go b/tg/tl_restriction_reason_gen.go index 0aa18b7411..cfd0bf747e 100644 --- a/tg/tl_restriction_reason_gen.go +++ b/tg/tl_restriction_reason_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_restriction_reason_slices_gen.go b/tg/tl_restriction_reason_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_restriction_reason_slices_gen.go +++ b/tg/tl_restriction_reason_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_rich_text_gen.go b/tg/tl_rich_text_gen.go index 202aa88fa0..5affcb1cb9 100644 --- a/tg/tl_rich_text_gen.go +++ b/tg/tl_rich_text_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_rich_text_slices_gen.go b/tg/tl_rich_text_slices_gen.go index e54157d82b..15fb4d4d66 100644 --- a/tg/tl_rich_text_slices_gen.go +++ b/tg/tl_rich_text_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_saved_dialog_gen.go b/tg/tl_saved_dialog_gen.go index 67c305d7f9..fb87cb9631 100644 --- a/tg/tl_saved_dialog_gen.go +++ b/tg/tl_saved_dialog_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_saved_dialog_slices_gen.go b/tg/tl_saved_dialog_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_saved_dialog_slices_gen.go +++ b/tg/tl_saved_dialog_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_saved_phone_contact_gen.go b/tg/tl_saved_phone_contact_gen.go index 027978e0f5..4a473ec84a 100644 --- a/tg/tl_saved_phone_contact_gen.go +++ b/tg/tl_saved_phone_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_saved_phone_contact_slices_gen.go b/tg/tl_saved_phone_contact_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_saved_phone_contact_slices_gen.go +++ b/tg/tl_saved_phone_contact_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_saved_phone_contact_vector_gen.go b/tg/tl_saved_phone_contact_vector_gen.go index 9d6da0571b..56cdd7acce 100644 --- a/tg/tl_saved_phone_contact_vector_gen.go +++ b/tg/tl_saved_phone_contact_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_saved_phone_contact_vector_slices_gen.go b/tg/tl_saved_phone_contact_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_saved_phone_contact_vector_slices_gen.go +++ b/tg/tl_saved_phone_contact_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_saved_reaction_tag_gen.go b/tg/tl_saved_reaction_tag_gen.go index 2e416ade98..35f039a489 100644 --- a/tg/tl_saved_reaction_tag_gen.go +++ b/tg/tl_saved_reaction_tag_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_saved_reaction_tag_slices_gen.go b/tg/tl_saved_reaction_tag_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_saved_reaction_tag_slices_gen.go +++ b/tg/tl_saved_reaction_tag_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_search_result_position_gen.go b/tg/tl_search_result_position_gen.go index 00b1795ab5..0306031157 100644 --- a/tg/tl_search_result_position_gen.go +++ b/tg/tl_search_result_position_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_search_result_position_slices_gen.go b/tg/tl_search_result_position_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_search_result_position_slices_gen.go +++ b/tg/tl_search_result_position_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_search_results_calendar_period_gen.go b/tg/tl_search_results_calendar_period_gen.go index fe58ee27a5..2fe15bb018 100644 --- a/tg/tl_search_results_calendar_period_gen.go +++ b/tg/tl_search_results_calendar_period_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_search_results_calendar_period_slices_gen.go b/tg/tl_search_results_calendar_period_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_search_results_calendar_period_slices_gen.go +++ b/tg/tl_search_results_calendar_period_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_credentials_encrypted_gen.go b/tg/tl_secure_credentials_encrypted_gen.go index ed4c61ea15..52bfe80bf7 100644 --- a/tg/tl_secure_credentials_encrypted_gen.go +++ b/tg/tl_secure_credentials_encrypted_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_credentials_encrypted_slices_gen.go b/tg/tl_secure_credentials_encrypted_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_secure_credentials_encrypted_slices_gen.go +++ b/tg/tl_secure_credentials_encrypted_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_data_gen.go b/tg/tl_secure_data_gen.go index 34a0ae21e8..7dd901384f 100644 --- a/tg/tl_secure_data_gen.go +++ b/tg/tl_secure_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_data_slices_gen.go b/tg/tl_secure_data_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_secure_data_slices_gen.go +++ b/tg/tl_secure_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_file_gen.go b/tg/tl_secure_file_gen.go index 5491f70deb..a9e0b3e1ff 100644 --- a/tg/tl_secure_file_gen.go +++ b/tg/tl_secure_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_file_slices_gen.go b/tg/tl_secure_file_slices_gen.go index 2d1416cbf0..9f204cfcbd 100644 --- a/tg/tl_secure_file_slices_gen.go +++ b/tg/tl_secure_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_password_kdf_algo_gen.go b/tg/tl_secure_password_kdf_algo_gen.go index e20bb4e28c..adaadaf3d4 100644 --- a/tg/tl_secure_password_kdf_algo_gen.go +++ b/tg/tl_secure_password_kdf_algo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_password_kdf_algo_slices_gen.go b/tg/tl_secure_password_kdf_algo_slices_gen.go index fdd684e997..f0ec23d391 100644 --- a/tg/tl_secure_password_kdf_algo_slices_gen.go +++ b/tg/tl_secure_password_kdf_algo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_plain_data_gen.go b/tg/tl_secure_plain_data_gen.go index 8eb34e1620..1d513c0bfb 100644 --- a/tg/tl_secure_plain_data_gen.go +++ b/tg/tl_secure_plain_data_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_plain_data_slices_gen.go b/tg/tl_secure_plain_data_slices_gen.go index c5ddb822a1..65ead24152 100644 --- a/tg/tl_secure_plain_data_slices_gen.go +++ b/tg/tl_secure_plain_data_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_required_type_gen.go b/tg/tl_secure_required_type_gen.go index 715d9e6940..0b5d7b24e3 100644 --- a/tg/tl_secure_required_type_gen.go +++ b/tg/tl_secure_required_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_required_type_slices_gen.go b/tg/tl_secure_required_type_slices_gen.go index b3dde93366..f7e369381b 100644 --- a/tg/tl_secure_required_type_slices_gen.go +++ b/tg/tl_secure_required_type_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_secret_settings_gen.go b/tg/tl_secure_secret_settings_gen.go index 0c61d18621..278c2b0654 100644 --- a/tg/tl_secure_secret_settings_gen.go +++ b/tg/tl_secure_secret_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_secret_settings_slices_gen.go b/tg/tl_secure_secret_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_secure_secret_settings_slices_gen.go +++ b/tg/tl_secure_secret_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_error_gen.go b/tg/tl_secure_value_error_gen.go index fa25b3e68f..dccb2d0a11 100644 --- a/tg/tl_secure_value_error_gen.go +++ b/tg/tl_secure_value_error_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_error_slices_gen.go b/tg/tl_secure_value_error_slices_gen.go index b8a574c2c8..fb49cbd030 100644 --- a/tg/tl_secure_value_error_slices_gen.go +++ b/tg/tl_secure_value_error_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_gen.go b/tg/tl_secure_value_gen.go index dc95c6cf9a..47073a99cd 100644 --- a/tg/tl_secure_value_gen.go +++ b/tg/tl_secure_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_hash_gen.go b/tg/tl_secure_value_hash_gen.go index a851be6d31..65d6173659 100644 --- a/tg/tl_secure_value_hash_gen.go +++ b/tg/tl_secure_value_hash_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_hash_slices_gen.go b/tg/tl_secure_value_hash_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_secure_value_hash_slices_gen.go +++ b/tg/tl_secure_value_hash_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_slices_gen.go b/tg/tl_secure_value_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_secure_value_slices_gen.go +++ b/tg/tl_secure_value_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_type_gen.go b/tg/tl_secure_value_type_gen.go index c7c38ece8c..08d816ba7c 100644 --- a/tg/tl_secure_value_type_gen.go +++ b/tg/tl_secure_value_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_type_slices_gen.go b/tg/tl_secure_value_type_slices_gen.go index c585488f04..aa53a68cb3 100644 --- a/tg/tl_secure_value_type_slices_gen.go +++ b/tg/tl_secure_value_type_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_vector_gen.go b/tg/tl_secure_value_vector_gen.go index 57301b8db4..1f9536a026 100644 --- a/tg/tl_secure_value_vector_gen.go +++ b/tg/tl_secure_value_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_secure_value_vector_slices_gen.go b/tg/tl_secure_value_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_secure_value_vector_slices_gen.go +++ b/tg/tl_secure_value_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_send_as_peer_gen.go b/tg/tl_send_as_peer_gen.go index ead68d890a..43b8301bdf 100644 --- a/tg/tl_send_as_peer_gen.go +++ b/tg/tl_send_as_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_send_as_peer_slices_gen.go b/tg/tl_send_as_peer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_send_as_peer_slices_gen.go +++ b/tg/tl_send_as_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_send_message_action_gen.go b/tg/tl_send_message_action_gen.go index ace02c4464..0c27967714 100644 --- a/tg/tl_send_message_action_gen.go +++ b/tg/tl_send_message_action_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_send_message_action_slices_gen.go b/tg/tl_send_message_action_slices_gen.go index a6969fe434..1adb634664 100644 --- a/tg/tl_send_message_action_slices_gen.go +++ b/tg/tl_send_message_action_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_server_gen.go b/tg/tl_server_gen.go index 72d3ad0c16..dac95a6abf 100644 --- a/tg/tl_server_gen.go +++ b/tg/tl_server_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_shipping_option_gen.go b/tg/tl_shipping_option_gen.go index f853ea3ebe..8d90dd1067 100644 --- a/tg/tl_shipping_option_gen.go +++ b/tg/tl_shipping_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_shipping_option_slices_gen.go b/tg/tl_shipping_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_shipping_option_slices_gen.go +++ b/tg/tl_shipping_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sms_job_gen.go b/tg/tl_sms_job_gen.go index d6995bffa3..8b7c5c96ae 100644 --- a/tg/tl_sms_job_gen.go +++ b/tg/tl_sms_job_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sms_job_slices_gen.go b/tg/tl_sms_job_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_sms_job_slices_gen.go +++ b/tg/tl_sms_job_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_eligible_to_join_gen.go b/tg/tl_smsjobs_eligible_to_join_gen.go index f833b9f73c..69c544534b 100644 --- a/tg/tl_smsjobs_eligible_to_join_gen.go +++ b/tg/tl_smsjobs_eligible_to_join_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_eligible_to_join_slices_gen.go b/tg/tl_smsjobs_eligible_to_join_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_smsjobs_eligible_to_join_slices_gen.go +++ b/tg/tl_smsjobs_eligible_to_join_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_finish_job_gen.go b/tg/tl_smsjobs_finish_job_gen.go index ed6730ccd0..1061dd8d67 100644 --- a/tg/tl_smsjobs_finish_job_gen.go +++ b/tg/tl_smsjobs_finish_job_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_finish_job_slices_gen.go b/tg/tl_smsjobs_finish_job_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_smsjobs_finish_job_slices_gen.go +++ b/tg/tl_smsjobs_finish_job_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_get_sms_job_gen.go b/tg/tl_smsjobs_get_sms_job_gen.go index e3481b7bb5..38400c36e6 100644 --- a/tg/tl_smsjobs_get_sms_job_gen.go +++ b/tg/tl_smsjobs_get_sms_job_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_get_sms_job_slices_gen.go b/tg/tl_smsjobs_get_sms_job_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_smsjobs_get_sms_job_slices_gen.go +++ b/tg/tl_smsjobs_get_sms_job_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_get_status_gen.go b/tg/tl_smsjobs_get_status_gen.go index a9f165d75f..5fe55de33b 100644 --- a/tg/tl_smsjobs_get_status_gen.go +++ b/tg/tl_smsjobs_get_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_get_status_slices_gen.go b/tg/tl_smsjobs_get_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_smsjobs_get_status_slices_gen.go +++ b/tg/tl_smsjobs_get_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_is_eligible_to_join_gen.go b/tg/tl_smsjobs_is_eligible_to_join_gen.go index 8b262c5cb3..84fe0f5161 100644 --- a/tg/tl_smsjobs_is_eligible_to_join_gen.go +++ b/tg/tl_smsjobs_is_eligible_to_join_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_is_eligible_to_join_slices_gen.go b/tg/tl_smsjobs_is_eligible_to_join_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_smsjobs_is_eligible_to_join_slices_gen.go +++ b/tg/tl_smsjobs_is_eligible_to_join_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_join_gen.go b/tg/tl_smsjobs_join_gen.go index e08abc8a73..58d4e0d0b9 100644 --- a/tg/tl_smsjobs_join_gen.go +++ b/tg/tl_smsjobs_join_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_join_slices_gen.go b/tg/tl_smsjobs_join_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_smsjobs_join_slices_gen.go +++ b/tg/tl_smsjobs_join_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_leave_gen.go b/tg/tl_smsjobs_leave_gen.go index 4839cf4b8b..71ec8f1964 100644 --- a/tg/tl_smsjobs_leave_gen.go +++ b/tg/tl_smsjobs_leave_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_leave_slices_gen.go b/tg/tl_smsjobs_leave_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_smsjobs_leave_slices_gen.go +++ b/tg/tl_smsjobs_leave_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_status_gen.go b/tg/tl_smsjobs_status_gen.go index 36003c3925..3a440f59dd 100644 --- a/tg/tl_smsjobs_status_gen.go +++ b/tg/tl_smsjobs_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_status_slices_gen.go b/tg/tl_smsjobs_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_smsjobs_status_slices_gen.go +++ b/tg/tl_smsjobs_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_update_settings_gen.go b/tg/tl_smsjobs_update_settings_gen.go index 87e9a72214..3e77fd590f 100644 --- a/tg/tl_smsjobs_update_settings_gen.go +++ b/tg/tl_smsjobs_update_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_smsjobs_update_settings_slices_gen.go b/tg/tl_smsjobs_update_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_smsjobs_update_settings_slices_gen.go +++ b/tg/tl_smsjobs_update_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sponsored_message_gen.go b/tg/tl_sponsored_message_gen.go index 4212038108..5433ab41ee 100644 --- a/tg/tl_sponsored_message_gen.go +++ b/tg/tl_sponsored_message_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sponsored_message_report_option_gen.go b/tg/tl_sponsored_message_report_option_gen.go index 19a33e9e68..a177dbc217 100644 --- a/tg/tl_sponsored_message_report_option_gen.go +++ b/tg/tl_sponsored_message_report_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sponsored_message_report_option_slices_gen.go b/tg/tl_sponsored_message_report_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_sponsored_message_report_option_slices_gen.go +++ b/tg/tl_sponsored_message_report_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sponsored_message_slices_gen.go b/tg/tl_sponsored_message_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_sponsored_message_slices_gen.go +++ b/tg/tl_sponsored_message_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_star_gift_gen.go b/tg/tl_star_gift_gen.go index 09e93b9a27..951587e404 100644 --- a/tg/tl_star_gift_gen.go +++ b/tg/tl_star_gift_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_star_gift_slices_gen.go b/tg/tl_star_gift_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_star_gift_slices_gen.go +++ b/tg/tl_star_gift_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_gift_option_gen.go b/tg/tl_stars_gift_option_gen.go index 235b071b35..9a67447854 100644 --- a/tg/tl_stars_gift_option_gen.go +++ b/tg/tl_stars_gift_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_gift_option_slices_gen.go b/tg/tl_stars_gift_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_gift_option_slices_gen.go +++ b/tg/tl_stars_gift_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_gift_option_vector_gen.go b/tg/tl_stars_gift_option_vector_gen.go index 80a59ccd93..98d132af6a 100644 --- a/tg/tl_stars_gift_option_vector_gen.go +++ b/tg/tl_stars_gift_option_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_gift_option_vector_slices_gen.go b/tg/tl_stars_gift_option_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_gift_option_vector_slices_gen.go +++ b/tg/tl_stars_gift_option_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_giveaway_option_gen.go b/tg/tl_stars_giveaway_option_gen.go index e407db5af1..0dc644d916 100644 --- a/tg/tl_stars_giveaway_option_gen.go +++ b/tg/tl_stars_giveaway_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_giveaway_option_slices_gen.go b/tg/tl_stars_giveaway_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_giveaway_option_slices_gen.go +++ b/tg/tl_stars_giveaway_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_giveaway_option_vector_gen.go b/tg/tl_stars_giveaway_option_vector_gen.go index ba8898e38a..8bf6847636 100644 --- a/tg/tl_stars_giveaway_option_vector_gen.go +++ b/tg/tl_stars_giveaway_option_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_giveaway_option_vector_slices_gen.go b/tg/tl_stars_giveaway_option_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_giveaway_option_vector_slices_gen.go +++ b/tg/tl_stars_giveaway_option_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_giveaway_winners_option_gen.go b/tg/tl_stars_giveaway_winners_option_gen.go index 6d396a2623..8504213a34 100644 --- a/tg/tl_stars_giveaway_winners_option_gen.go +++ b/tg/tl_stars_giveaway_winners_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_giveaway_winners_option_slices_gen.go b/tg/tl_stars_giveaway_winners_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_giveaway_winners_option_slices_gen.go +++ b/tg/tl_stars_giveaway_winners_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_revenue_status_gen.go b/tg/tl_stars_revenue_status_gen.go index 8cb4bdd165..9bc9fa364e 100644 --- a/tg/tl_stars_revenue_status_gen.go +++ b/tg/tl_stars_revenue_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_revenue_status_slices_gen.go b/tg/tl_stars_revenue_status_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_revenue_status_slices_gen.go +++ b/tg/tl_stars_revenue_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_subscription_gen.go b/tg/tl_stars_subscription_gen.go index d4194ba699..a5f506b1e7 100644 --- a/tg/tl_stars_subscription_gen.go +++ b/tg/tl_stars_subscription_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_subscription_pricing_gen.go b/tg/tl_stars_subscription_pricing_gen.go index 9ec49897a5..340c0acea3 100644 --- a/tg/tl_stars_subscription_pricing_gen.go +++ b/tg/tl_stars_subscription_pricing_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_subscription_pricing_slices_gen.go b/tg/tl_stars_subscription_pricing_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_subscription_pricing_slices_gen.go +++ b/tg/tl_stars_subscription_pricing_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_subscription_slices_gen.go b/tg/tl_stars_subscription_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_subscription_slices_gen.go +++ b/tg/tl_stars_subscription_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_topup_option_gen.go b/tg/tl_stars_topup_option_gen.go index 496ac138d2..8dfb65db59 100644 --- a/tg/tl_stars_topup_option_gen.go +++ b/tg/tl_stars_topup_option_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_topup_option_slices_gen.go b/tg/tl_stars_topup_option_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_topup_option_slices_gen.go +++ b/tg/tl_stars_topup_option_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_topup_option_vector_gen.go b/tg/tl_stars_topup_option_vector_gen.go index 35d8f7f954..587534f185 100644 --- a/tg/tl_stars_topup_option_vector_gen.go +++ b/tg/tl_stars_topup_option_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_topup_option_vector_slices_gen.go b/tg/tl_stars_topup_option_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_topup_option_vector_slices_gen.go +++ b/tg/tl_stars_topup_option_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_transaction_gen.go b/tg/tl_stars_transaction_gen.go index 89ad1db103..f970b1741b 100644 --- a/tg/tl_stars_transaction_gen.go +++ b/tg/tl_stars_transaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_transaction_peer_gen.go b/tg/tl_stars_transaction_peer_gen.go index a7d3adae27..18ddf9ba1c 100644 --- a/tg/tl_stars_transaction_peer_gen.go +++ b/tg/tl_stars_transaction_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_transaction_peer_slices_gen.go b/tg/tl_stars_transaction_peer_slices_gen.go index 7ebceaf0dd..42de508b46 100644 --- a/tg/tl_stars_transaction_peer_slices_gen.go +++ b/tg/tl_stars_transaction_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stars_transaction_slices_gen.go b/tg/tl_stars_transaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stars_transaction_slices_gen.go +++ b/tg/tl_stars_transaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_abs_value_and_prev_gen.go b/tg/tl_stats_abs_value_and_prev_gen.go index b1c4746e5c..c38e438b2c 100644 --- a/tg/tl_stats_abs_value_and_prev_gen.go +++ b/tg/tl_stats_abs_value_and_prev_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_abs_value_and_prev_slices_gen.go b/tg/tl_stats_abs_value_and_prev_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_abs_value_and_prev_slices_gen.go +++ b/tg/tl_stats_abs_value_and_prev_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_broadcast_revenue_stats_gen.go b/tg/tl_stats_broadcast_revenue_stats_gen.go index d0364f473c..726990969f 100644 --- a/tg/tl_stats_broadcast_revenue_stats_gen.go +++ b/tg/tl_stats_broadcast_revenue_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_broadcast_revenue_stats_slices_gen.go b/tg/tl_stats_broadcast_revenue_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_broadcast_revenue_stats_slices_gen.go +++ b/tg/tl_stats_broadcast_revenue_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_broadcast_revenue_transactions_gen.go b/tg/tl_stats_broadcast_revenue_transactions_gen.go index 1098352863..f9bcd3151b 100644 --- a/tg/tl_stats_broadcast_revenue_transactions_gen.go +++ b/tg/tl_stats_broadcast_revenue_transactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_broadcast_revenue_transactions_slices_gen.go b/tg/tl_stats_broadcast_revenue_transactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_broadcast_revenue_transactions_slices_gen.go +++ b/tg/tl_stats_broadcast_revenue_transactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_broadcast_revenue_withdrawal_url_gen.go b/tg/tl_stats_broadcast_revenue_withdrawal_url_gen.go index 50d107865b..d15fbc8f83 100644 --- a/tg/tl_stats_broadcast_revenue_withdrawal_url_gen.go +++ b/tg/tl_stats_broadcast_revenue_withdrawal_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_broadcast_revenue_withdrawal_url_slices_gen.go b/tg/tl_stats_broadcast_revenue_withdrawal_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_broadcast_revenue_withdrawal_url_slices_gen.go +++ b/tg/tl_stats_broadcast_revenue_withdrawal_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_broadcast_stats_gen.go b/tg/tl_stats_broadcast_stats_gen.go index 2493a27355..ade3bbf88c 100644 --- a/tg/tl_stats_broadcast_stats_gen.go +++ b/tg/tl_stats_broadcast_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_broadcast_stats_slices_gen.go b/tg/tl_stats_broadcast_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_broadcast_stats_slices_gen.go +++ b/tg/tl_stats_broadcast_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_date_range_days_gen.go b/tg/tl_stats_date_range_days_gen.go index 4f8c6c9786..ac89f37f35 100644 --- a/tg/tl_stats_date_range_days_gen.go +++ b/tg/tl_stats_date_range_days_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_date_range_days_slices_gen.go b/tg/tl_stats_date_range_days_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_date_range_days_slices_gen.go +++ b/tg/tl_stats_date_range_days_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_broadcast_revenue_stats_gen.go b/tg/tl_stats_get_broadcast_revenue_stats_gen.go index 3bc6ab9a61..73bbe00226 100644 --- a/tg/tl_stats_get_broadcast_revenue_stats_gen.go +++ b/tg/tl_stats_get_broadcast_revenue_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_broadcast_revenue_stats_slices_gen.go b/tg/tl_stats_get_broadcast_revenue_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_get_broadcast_revenue_stats_slices_gen.go +++ b/tg/tl_stats_get_broadcast_revenue_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_broadcast_revenue_transactions_gen.go b/tg/tl_stats_get_broadcast_revenue_transactions_gen.go index acdac22975..9731f76ac9 100644 --- a/tg/tl_stats_get_broadcast_revenue_transactions_gen.go +++ b/tg/tl_stats_get_broadcast_revenue_transactions_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_broadcast_revenue_transactions_slices_gen.go b/tg/tl_stats_get_broadcast_revenue_transactions_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_get_broadcast_revenue_transactions_slices_gen.go +++ b/tg/tl_stats_get_broadcast_revenue_transactions_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_broadcast_revenue_withdrawal_url_gen.go b/tg/tl_stats_get_broadcast_revenue_withdrawal_url_gen.go index 3dbc5c927f..001f3cb5c5 100644 --- a/tg/tl_stats_get_broadcast_revenue_withdrawal_url_gen.go +++ b/tg/tl_stats_get_broadcast_revenue_withdrawal_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_broadcast_revenue_withdrawal_url_slices_gen.go b/tg/tl_stats_get_broadcast_revenue_withdrawal_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_get_broadcast_revenue_withdrawal_url_slices_gen.go +++ b/tg/tl_stats_get_broadcast_revenue_withdrawal_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_broadcast_stats_gen.go b/tg/tl_stats_get_broadcast_stats_gen.go index 0c2ae4fd03..caa65cd30f 100644 --- a/tg/tl_stats_get_broadcast_stats_gen.go +++ b/tg/tl_stats_get_broadcast_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_broadcast_stats_slices_gen.go b/tg/tl_stats_get_broadcast_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_get_broadcast_stats_slices_gen.go +++ b/tg/tl_stats_get_broadcast_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_megagroup_stats_gen.go b/tg/tl_stats_get_megagroup_stats_gen.go index 67ccf98d13..4a529d2cc3 100644 --- a/tg/tl_stats_get_megagroup_stats_gen.go +++ b/tg/tl_stats_get_megagroup_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_megagroup_stats_slices_gen.go b/tg/tl_stats_get_megagroup_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_get_megagroup_stats_slices_gen.go +++ b/tg/tl_stats_get_megagroup_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_message_public_forwards_gen.go b/tg/tl_stats_get_message_public_forwards_gen.go index db4f6ac4ea..927dc06601 100644 --- a/tg/tl_stats_get_message_public_forwards_gen.go +++ b/tg/tl_stats_get_message_public_forwards_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_message_public_forwards_slices_gen.go b/tg/tl_stats_get_message_public_forwards_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_get_message_public_forwards_slices_gen.go +++ b/tg/tl_stats_get_message_public_forwards_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_message_stats_gen.go b/tg/tl_stats_get_message_stats_gen.go index c64c520e1b..0afdd0b3cf 100644 --- a/tg/tl_stats_get_message_stats_gen.go +++ b/tg/tl_stats_get_message_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_message_stats_slices_gen.go b/tg/tl_stats_get_message_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_get_message_stats_slices_gen.go +++ b/tg/tl_stats_get_message_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_story_public_forwards_gen.go b/tg/tl_stats_get_story_public_forwards_gen.go index a1bc0549b8..259c4a96d9 100644 --- a/tg/tl_stats_get_story_public_forwards_gen.go +++ b/tg/tl_stats_get_story_public_forwards_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_story_public_forwards_slices_gen.go b/tg/tl_stats_get_story_public_forwards_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_get_story_public_forwards_slices_gen.go +++ b/tg/tl_stats_get_story_public_forwards_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_story_stats_gen.go b/tg/tl_stats_get_story_stats_gen.go index 588b8e4328..f6f2008503 100644 --- a/tg/tl_stats_get_story_stats_gen.go +++ b/tg/tl_stats_get_story_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_get_story_stats_slices_gen.go b/tg/tl_stats_get_story_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_get_story_stats_slices_gen.go +++ b/tg/tl_stats_get_story_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_graph_gen.go b/tg/tl_stats_graph_gen.go index b90d93959a..e0ad0c1875 100644 --- a/tg/tl_stats_graph_gen.go +++ b/tg/tl_stats_graph_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_graph_slices_gen.go b/tg/tl_stats_graph_slices_gen.go index 9318011bc6..b0c592ab30 100644 --- a/tg/tl_stats_graph_slices_gen.go +++ b/tg/tl_stats_graph_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_group_top_admin_gen.go b/tg/tl_stats_group_top_admin_gen.go index 56164235b8..15e79196d2 100644 --- a/tg/tl_stats_group_top_admin_gen.go +++ b/tg/tl_stats_group_top_admin_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_group_top_admin_slices_gen.go b/tg/tl_stats_group_top_admin_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_group_top_admin_slices_gen.go +++ b/tg/tl_stats_group_top_admin_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_group_top_inviter_gen.go b/tg/tl_stats_group_top_inviter_gen.go index fb1c4c846f..76397c0507 100644 --- a/tg/tl_stats_group_top_inviter_gen.go +++ b/tg/tl_stats_group_top_inviter_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_group_top_inviter_slices_gen.go b/tg/tl_stats_group_top_inviter_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_group_top_inviter_slices_gen.go +++ b/tg/tl_stats_group_top_inviter_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_group_top_poster_gen.go b/tg/tl_stats_group_top_poster_gen.go index a099647a5c..cb6daef616 100644 --- a/tg/tl_stats_group_top_poster_gen.go +++ b/tg/tl_stats_group_top_poster_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_group_top_poster_slices_gen.go b/tg/tl_stats_group_top_poster_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_group_top_poster_slices_gen.go +++ b/tg/tl_stats_group_top_poster_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_load_async_graph_gen.go b/tg/tl_stats_load_async_graph_gen.go index 40d43c2a00..f01ac2e30f 100644 --- a/tg/tl_stats_load_async_graph_gen.go +++ b/tg/tl_stats_load_async_graph_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_load_async_graph_slices_gen.go b/tg/tl_stats_load_async_graph_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_load_async_graph_slices_gen.go +++ b/tg/tl_stats_load_async_graph_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_megagroup_stats_gen.go b/tg/tl_stats_megagroup_stats_gen.go index d92352d5a1..ada5a60e5b 100644 --- a/tg/tl_stats_megagroup_stats_gen.go +++ b/tg/tl_stats_megagroup_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_megagroup_stats_slices_gen.go b/tg/tl_stats_megagroup_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_megagroup_stats_slices_gen.go +++ b/tg/tl_stats_megagroup_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_message_stats_gen.go b/tg/tl_stats_message_stats_gen.go index dcc4420f61..134c4ff682 100644 --- a/tg/tl_stats_message_stats_gen.go +++ b/tg/tl_stats_message_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_message_stats_slices_gen.go b/tg/tl_stats_message_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_message_stats_slices_gen.go +++ b/tg/tl_stats_message_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_percent_value_gen.go b/tg/tl_stats_percent_value_gen.go index a485a13f2f..bcc52c6d86 100644 --- a/tg/tl_stats_percent_value_gen.go +++ b/tg/tl_stats_percent_value_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_percent_value_slices_gen.go b/tg/tl_stats_percent_value_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_percent_value_slices_gen.go +++ b/tg/tl_stats_percent_value_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_public_forwards_gen.go b/tg/tl_stats_public_forwards_gen.go index 112aea64bf..260b3858da 100644 --- a/tg/tl_stats_public_forwards_gen.go +++ b/tg/tl_stats_public_forwards_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_public_forwards_slices_gen.go b/tg/tl_stats_public_forwards_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_public_forwards_slices_gen.go +++ b/tg/tl_stats_public_forwards_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_story_stats_gen.go b/tg/tl_stats_story_stats_gen.go index 1fa0c77b18..4d2c20c67a 100644 --- a/tg/tl_stats_story_stats_gen.go +++ b/tg/tl_stats_story_stats_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_story_stats_slices_gen.go b/tg/tl_stats_story_stats_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_story_stats_slices_gen.go +++ b/tg/tl_stats_story_stats_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_url_gen.go b/tg/tl_stats_url_gen.go index 71722bf9c7..f119cec2b6 100644 --- a/tg/tl_stats_url_gen.go +++ b/tg/tl_stats_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stats_url_slices_gen.go b/tg/tl_stats_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stats_url_slices_gen.go +++ b/tg/tl_stats_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_keyword_gen.go b/tg/tl_sticker_keyword_gen.go index 146f59aec9..5994a59e29 100644 --- a/tg/tl_sticker_keyword_gen.go +++ b/tg/tl_sticker_keyword_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_keyword_slices_gen.go b/tg/tl_sticker_keyword_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_sticker_keyword_slices_gen.go +++ b/tg/tl_sticker_keyword_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_pack_gen.go b/tg/tl_sticker_pack_gen.go index 328ade0abd..5f0f897394 100644 --- a/tg/tl_sticker_pack_gen.go +++ b/tg/tl_sticker_pack_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_pack_slices_gen.go b/tg/tl_sticker_pack_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_sticker_pack_slices_gen.go +++ b/tg/tl_sticker_pack_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_set_covered_class_vector_gen.go b/tg/tl_sticker_set_covered_class_vector_gen.go index a53387f5de..afc7f2c607 100644 --- a/tg/tl_sticker_set_covered_class_vector_gen.go +++ b/tg/tl_sticker_set_covered_class_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_set_covered_class_vector_slices_gen.go b/tg/tl_sticker_set_covered_class_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_sticker_set_covered_class_vector_slices_gen.go +++ b/tg/tl_sticker_set_covered_class_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_set_covered_gen.go b/tg/tl_sticker_set_covered_gen.go index 133f621841..52bfc40242 100644 --- a/tg/tl_sticker_set_covered_gen.go +++ b/tg/tl_sticker_set_covered_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_set_covered_slices_gen.go b/tg/tl_sticker_set_covered_slices_gen.go index 174693d9ec..85265296e2 100644 --- a/tg/tl_sticker_set_covered_slices_gen.go +++ b/tg/tl_sticker_set_covered_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_set_gen.go b/tg/tl_sticker_set_gen.go index 2e547bda35..93ac99fa75 100644 --- a/tg/tl_sticker_set_gen.go +++ b/tg/tl_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_sticker_set_slices_gen.go b/tg/tl_sticker_set_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_sticker_set_slices_gen.go +++ b/tg/tl_sticker_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_add_sticker_to_set_gen.go b/tg/tl_stickers_add_sticker_to_set_gen.go index 7bc6744e24..d8fbc195a4 100644 --- a/tg/tl_stickers_add_sticker_to_set_gen.go +++ b/tg/tl_stickers_add_sticker_to_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_add_sticker_to_set_slices_gen.go b/tg/tl_stickers_add_sticker_to_set_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_add_sticker_to_set_slices_gen.go +++ b/tg/tl_stickers_add_sticker_to_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_change_sticker_gen.go b/tg/tl_stickers_change_sticker_gen.go index cf7e58988d..fd0a0b1709 100644 --- a/tg/tl_stickers_change_sticker_gen.go +++ b/tg/tl_stickers_change_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_change_sticker_position_gen.go b/tg/tl_stickers_change_sticker_position_gen.go index 876f8f6610..705f45d804 100644 --- a/tg/tl_stickers_change_sticker_position_gen.go +++ b/tg/tl_stickers_change_sticker_position_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_change_sticker_position_slices_gen.go b/tg/tl_stickers_change_sticker_position_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_change_sticker_position_slices_gen.go +++ b/tg/tl_stickers_change_sticker_position_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_change_sticker_slices_gen.go b/tg/tl_stickers_change_sticker_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_change_sticker_slices_gen.go +++ b/tg/tl_stickers_change_sticker_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_check_short_name_gen.go b/tg/tl_stickers_check_short_name_gen.go index 44e4329128..5dd9a37ba5 100644 --- a/tg/tl_stickers_check_short_name_gen.go +++ b/tg/tl_stickers_check_short_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_check_short_name_slices_gen.go b/tg/tl_stickers_check_short_name_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_check_short_name_slices_gen.go +++ b/tg/tl_stickers_check_short_name_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_create_sticker_set_gen.go b/tg/tl_stickers_create_sticker_set_gen.go index 6d59409670..82f0c2be35 100644 --- a/tg/tl_stickers_create_sticker_set_gen.go +++ b/tg/tl_stickers_create_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_create_sticker_set_slices_gen.go b/tg/tl_stickers_create_sticker_set_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_create_sticker_set_slices_gen.go +++ b/tg/tl_stickers_create_sticker_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_delete_sticker_set_gen.go b/tg/tl_stickers_delete_sticker_set_gen.go index aacf3d015b..9fd075d70a 100644 --- a/tg/tl_stickers_delete_sticker_set_gen.go +++ b/tg/tl_stickers_delete_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_delete_sticker_set_slices_gen.go b/tg/tl_stickers_delete_sticker_set_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_delete_sticker_set_slices_gen.go +++ b/tg/tl_stickers_delete_sticker_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_remove_sticker_from_set_gen.go b/tg/tl_stickers_remove_sticker_from_set_gen.go index 2ceb4d27ef..974143bb94 100644 --- a/tg/tl_stickers_remove_sticker_from_set_gen.go +++ b/tg/tl_stickers_remove_sticker_from_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_remove_sticker_from_set_slices_gen.go b/tg/tl_stickers_remove_sticker_from_set_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_remove_sticker_from_set_slices_gen.go +++ b/tg/tl_stickers_remove_sticker_from_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_rename_sticker_set_gen.go b/tg/tl_stickers_rename_sticker_set_gen.go index c5c73e0203..5d8d4b32b3 100644 --- a/tg/tl_stickers_rename_sticker_set_gen.go +++ b/tg/tl_stickers_rename_sticker_set_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_rename_sticker_set_slices_gen.go b/tg/tl_stickers_rename_sticker_set_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_rename_sticker_set_slices_gen.go +++ b/tg/tl_stickers_rename_sticker_set_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_replace_sticker_gen.go b/tg/tl_stickers_replace_sticker_gen.go index d3c5c64712..e09a54ddf3 100644 --- a/tg/tl_stickers_replace_sticker_gen.go +++ b/tg/tl_stickers_replace_sticker_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_replace_sticker_slices_gen.go b/tg/tl_stickers_replace_sticker_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_replace_sticker_slices_gen.go +++ b/tg/tl_stickers_replace_sticker_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_set_sticker_set_thumb_gen.go b/tg/tl_stickers_set_sticker_set_thumb_gen.go index 0aab9bf880..28621dc75d 100644 --- a/tg/tl_stickers_set_sticker_set_thumb_gen.go +++ b/tg/tl_stickers_set_sticker_set_thumb_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_set_sticker_set_thumb_slices_gen.go b/tg/tl_stickers_set_sticker_set_thumb_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_set_sticker_set_thumb_slices_gen.go +++ b/tg/tl_stickers_set_sticker_set_thumb_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_suggest_short_name_gen.go b/tg/tl_stickers_suggest_short_name_gen.go index 9560852ca0..ee23115cdc 100644 --- a/tg/tl_stickers_suggest_short_name_gen.go +++ b/tg/tl_stickers_suggest_short_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_suggest_short_name_slices_gen.go b/tg/tl_stickers_suggest_short_name_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_suggest_short_name_slices_gen.go +++ b/tg/tl_stickers_suggest_short_name_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_suggested_short_name_gen.go b/tg/tl_stickers_suggested_short_name_gen.go index 401f5c4fdd..5729143ad9 100644 --- a/tg/tl_stickers_suggested_short_name_gen.go +++ b/tg/tl_stickers_suggested_short_name_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stickers_suggested_short_name_slices_gen.go b/tg/tl_stickers_suggested_short_name_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stickers_suggested_short_name_slices_gen.go +++ b/tg/tl_stickers_suggested_short_name_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_storage_file_type_gen.go b/tg/tl_storage_file_type_gen.go index ce1836091c..a98cafb5e9 100644 --- a/tg/tl_storage_file_type_gen.go +++ b/tg/tl_storage_file_type_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_storage_file_type_slices_gen.go b/tg/tl_storage_file_type_slices_gen.go index 9894f2a4df..f745cb023f 100644 --- a/tg/tl_storage_file_type_slices_gen.go +++ b/tg/tl_storage_file_type_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_activate_stealth_mode_gen.go b/tg/tl_stories_activate_stealth_mode_gen.go index 935b1d0c30..c99426668f 100644 --- a/tg/tl_stories_activate_stealth_mode_gen.go +++ b/tg/tl_stories_activate_stealth_mode_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_activate_stealth_mode_slices_gen.go b/tg/tl_stories_activate_stealth_mode_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_activate_stealth_mode_slices_gen.go +++ b/tg/tl_stories_activate_stealth_mode_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_all_stories_gen.go b/tg/tl_stories_all_stories_gen.go index 48b4c107f3..2385851e65 100644 --- a/tg/tl_stories_all_stories_gen.go +++ b/tg/tl_stories_all_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_all_stories_slices_gen.go b/tg/tl_stories_all_stories_slices_gen.go index 718410c685..e4145cfddb 100644 --- a/tg/tl_stories_all_stories_slices_gen.go +++ b/tg/tl_stories_all_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_can_send_story_gen.go b/tg/tl_stories_can_send_story_gen.go index 76c6d74112..8ca265fbe0 100644 --- a/tg/tl_stories_can_send_story_gen.go +++ b/tg/tl_stories_can_send_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_can_send_story_slices_gen.go b/tg/tl_stories_can_send_story_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_can_send_story_slices_gen.go +++ b/tg/tl_stories_can_send_story_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_delete_stories_gen.go b/tg/tl_stories_delete_stories_gen.go index 051a74b897..e0e270884b 100644 --- a/tg/tl_stories_delete_stories_gen.go +++ b/tg/tl_stories_delete_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_delete_stories_slices_gen.go b/tg/tl_stories_delete_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_delete_stories_slices_gen.go +++ b/tg/tl_stories_delete_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_edit_story_gen.go b/tg/tl_stories_edit_story_gen.go index 0a772884d0..44a5a4c0cf 100644 --- a/tg/tl_stories_edit_story_gen.go +++ b/tg/tl_stories_edit_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_edit_story_slices_gen.go b/tg/tl_stories_edit_story_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_edit_story_slices_gen.go +++ b/tg/tl_stories_edit_story_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_export_story_link_gen.go b/tg/tl_stories_export_story_link_gen.go index ab37732e45..1a0bde08d7 100644 --- a/tg/tl_stories_export_story_link_gen.go +++ b/tg/tl_stories_export_story_link_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_export_story_link_slices_gen.go b/tg/tl_stories_export_story_link_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_export_story_link_slices_gen.go +++ b/tg/tl_stories_export_story_link_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_found_stories_gen.go b/tg/tl_stories_found_stories_gen.go index 853ae293a8..7504d02475 100644 --- a/tg/tl_stories_found_stories_gen.go +++ b/tg/tl_stories_found_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_found_stories_slices_gen.go b/tg/tl_stories_found_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_found_stories_slices_gen.go +++ b/tg/tl_stories_found_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_all_read_peer_stories_gen.go b/tg/tl_stories_get_all_read_peer_stories_gen.go index 6b918739f2..a1258571b8 100644 --- a/tg/tl_stories_get_all_read_peer_stories_gen.go +++ b/tg/tl_stories_get_all_read_peer_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_all_read_peer_stories_slices_gen.go b/tg/tl_stories_get_all_read_peer_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_all_read_peer_stories_slices_gen.go +++ b/tg/tl_stories_get_all_read_peer_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_all_stories_gen.go b/tg/tl_stories_get_all_stories_gen.go index 7de110479a..65c36b5216 100644 --- a/tg/tl_stories_get_all_stories_gen.go +++ b/tg/tl_stories_get_all_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_all_stories_slices_gen.go b/tg/tl_stories_get_all_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_all_stories_slices_gen.go +++ b/tg/tl_stories_get_all_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_chats_to_send_gen.go b/tg/tl_stories_get_chats_to_send_gen.go index b76e495eea..d55a1cb5ad 100644 --- a/tg/tl_stories_get_chats_to_send_gen.go +++ b/tg/tl_stories_get_chats_to_send_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_chats_to_send_slices_gen.go b/tg/tl_stories_get_chats_to_send_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_chats_to_send_slices_gen.go +++ b/tg/tl_stories_get_chats_to_send_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_peer_max_ids_gen.go b/tg/tl_stories_get_peer_max_ids_gen.go index cb95d029ec..c70954dd08 100644 --- a/tg/tl_stories_get_peer_max_ids_gen.go +++ b/tg/tl_stories_get_peer_max_ids_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_peer_max_ids_slices_gen.go b/tg/tl_stories_get_peer_max_ids_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_peer_max_ids_slices_gen.go +++ b/tg/tl_stories_get_peer_max_ids_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_peer_stories_gen.go b/tg/tl_stories_get_peer_stories_gen.go index 099ab70ba2..0f0eb487dd 100644 --- a/tg/tl_stories_get_peer_stories_gen.go +++ b/tg/tl_stories_get_peer_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_peer_stories_slices_gen.go b/tg/tl_stories_get_peer_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_peer_stories_slices_gen.go +++ b/tg/tl_stories_get_peer_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_pinned_stories_gen.go b/tg/tl_stories_get_pinned_stories_gen.go index 3e7240ffbc..c47a6dea43 100644 --- a/tg/tl_stories_get_pinned_stories_gen.go +++ b/tg/tl_stories_get_pinned_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_pinned_stories_slices_gen.go b/tg/tl_stories_get_pinned_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_pinned_stories_slices_gen.go +++ b/tg/tl_stories_get_pinned_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_stories_archive_gen.go b/tg/tl_stories_get_stories_archive_gen.go index fbdf5ce101..db9b6b4ecc 100644 --- a/tg/tl_stories_get_stories_archive_gen.go +++ b/tg/tl_stories_get_stories_archive_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_stories_archive_slices_gen.go b/tg/tl_stories_get_stories_archive_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_stories_archive_slices_gen.go +++ b/tg/tl_stories_get_stories_archive_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_stories_by_id_gen.go b/tg/tl_stories_get_stories_by_id_gen.go index 4db29f9c99..73d81aac5c 100644 --- a/tg/tl_stories_get_stories_by_id_gen.go +++ b/tg/tl_stories_get_stories_by_id_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_stories_by_id_slices_gen.go b/tg/tl_stories_get_stories_by_id_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_stories_by_id_slices_gen.go +++ b/tg/tl_stories_get_stories_by_id_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_stories_views_gen.go b/tg/tl_stories_get_stories_views_gen.go index fe7c050881..414f0f76e2 100644 --- a/tg/tl_stories_get_stories_views_gen.go +++ b/tg/tl_stories_get_stories_views_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_stories_views_slices_gen.go b/tg/tl_stories_get_stories_views_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_stories_views_slices_gen.go +++ b/tg/tl_stories_get_stories_views_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_story_reactions_list_gen.go b/tg/tl_stories_get_story_reactions_list_gen.go index 2a54c9b2fe..987ab7ef80 100644 --- a/tg/tl_stories_get_story_reactions_list_gen.go +++ b/tg/tl_stories_get_story_reactions_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_story_reactions_list_slices_gen.go b/tg/tl_stories_get_story_reactions_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_story_reactions_list_slices_gen.go +++ b/tg/tl_stories_get_story_reactions_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_story_views_list_gen.go b/tg/tl_stories_get_story_views_list_gen.go index f3fb36b1ee..863bc00ccb 100644 --- a/tg/tl_stories_get_story_views_list_gen.go +++ b/tg/tl_stories_get_story_views_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_get_story_views_list_slices_gen.go b/tg/tl_stories_get_story_views_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_get_story_views_list_slices_gen.go +++ b/tg/tl_stories_get_story_views_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_increment_story_views_gen.go b/tg/tl_stories_increment_story_views_gen.go index 67ba12ddbf..765b8f62c1 100644 --- a/tg/tl_stories_increment_story_views_gen.go +++ b/tg/tl_stories_increment_story_views_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_increment_story_views_slices_gen.go b/tg/tl_stories_increment_story_views_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_increment_story_views_slices_gen.go +++ b/tg/tl_stories_increment_story_views_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_peer_stories_gen.go b/tg/tl_stories_peer_stories_gen.go index e3be4db777..1ff5b3ca6d 100644 --- a/tg/tl_stories_peer_stories_gen.go +++ b/tg/tl_stories_peer_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_peer_stories_slices_gen.go b/tg/tl_stories_peer_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_peer_stories_slices_gen.go +++ b/tg/tl_stories_peer_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_read_stories_gen.go b/tg/tl_stories_read_stories_gen.go index c93222aebd..682e468a1d 100644 --- a/tg/tl_stories_read_stories_gen.go +++ b/tg/tl_stories_read_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_read_stories_slices_gen.go b/tg/tl_stories_read_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_read_stories_slices_gen.go +++ b/tg/tl_stories_read_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_report_gen.go b/tg/tl_stories_report_gen.go index ba5aabe779..5431eeee5d 100644 --- a/tg/tl_stories_report_gen.go +++ b/tg/tl_stories_report_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_report_slices_gen.go b/tg/tl_stories_report_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_report_slices_gen.go +++ b/tg/tl_stories_report_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_search_posts_gen.go b/tg/tl_stories_search_posts_gen.go index 5a95e84795..52e8a24a13 100644 --- a/tg/tl_stories_search_posts_gen.go +++ b/tg/tl_stories_search_posts_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_search_posts_slices_gen.go b/tg/tl_stories_search_posts_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_search_posts_slices_gen.go +++ b/tg/tl_stories_search_posts_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_send_reaction_gen.go b/tg/tl_stories_send_reaction_gen.go index 108db749cc..666b19f3c8 100644 --- a/tg/tl_stories_send_reaction_gen.go +++ b/tg/tl_stories_send_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_send_reaction_slices_gen.go b/tg/tl_stories_send_reaction_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_send_reaction_slices_gen.go +++ b/tg/tl_stories_send_reaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_send_story_gen.go b/tg/tl_stories_send_story_gen.go index cee66d9958..fd67f50070 100644 --- a/tg/tl_stories_send_story_gen.go +++ b/tg/tl_stories_send_story_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_send_story_slices_gen.go b/tg/tl_stories_send_story_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_send_story_slices_gen.go +++ b/tg/tl_stories_send_story_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_stealth_mode_gen.go b/tg/tl_stories_stealth_mode_gen.go index 5a48fdbcc7..51bca00582 100644 --- a/tg/tl_stories_stealth_mode_gen.go +++ b/tg/tl_stories_stealth_mode_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_stealth_mode_slices_gen.go b/tg/tl_stories_stealth_mode_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_stealth_mode_slices_gen.go +++ b/tg/tl_stories_stealth_mode_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_stories_gen.go b/tg/tl_stories_stories_gen.go index f2fb78e02a..e51d5a1826 100644 --- a/tg/tl_stories_stories_gen.go +++ b/tg/tl_stories_stories_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_stories_slices_gen.go b/tg/tl_stories_stories_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_stories_slices_gen.go +++ b/tg/tl_stories_stories_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_story_reactions_list_gen.go b/tg/tl_stories_story_reactions_list_gen.go index 998f5c38dc..128c24ba48 100644 --- a/tg/tl_stories_story_reactions_list_gen.go +++ b/tg/tl_stories_story_reactions_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_story_reactions_list_slices_gen.go b/tg/tl_stories_story_reactions_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_story_reactions_list_slices_gen.go +++ b/tg/tl_stories_story_reactions_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_story_views_gen.go b/tg/tl_stories_story_views_gen.go index 10f8adb69f..e08391b054 100644 --- a/tg/tl_stories_story_views_gen.go +++ b/tg/tl_stories_story_views_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_story_views_list_gen.go b/tg/tl_stories_story_views_list_gen.go index 7faaf0aa6b..67d18a820a 100644 --- a/tg/tl_stories_story_views_list_gen.go +++ b/tg/tl_stories_story_views_list_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_story_views_list_slices_gen.go b/tg/tl_stories_story_views_list_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_story_views_list_slices_gen.go +++ b/tg/tl_stories_story_views_list_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_story_views_slices_gen.go b/tg/tl_stories_story_views_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_story_views_slices_gen.go +++ b/tg/tl_stories_story_views_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_toggle_all_stories_hidden_gen.go b/tg/tl_stories_toggle_all_stories_hidden_gen.go index 7b836ecb6a..fd56ac5bba 100644 --- a/tg/tl_stories_toggle_all_stories_hidden_gen.go +++ b/tg/tl_stories_toggle_all_stories_hidden_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_toggle_all_stories_hidden_slices_gen.go b/tg/tl_stories_toggle_all_stories_hidden_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_toggle_all_stories_hidden_slices_gen.go +++ b/tg/tl_stories_toggle_all_stories_hidden_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_toggle_peer_stories_hidden_gen.go b/tg/tl_stories_toggle_peer_stories_hidden_gen.go index 1915781e9c..9d30fd6151 100644 --- a/tg/tl_stories_toggle_peer_stories_hidden_gen.go +++ b/tg/tl_stories_toggle_peer_stories_hidden_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_toggle_peer_stories_hidden_slices_gen.go b/tg/tl_stories_toggle_peer_stories_hidden_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_toggle_peer_stories_hidden_slices_gen.go +++ b/tg/tl_stories_toggle_peer_stories_hidden_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_toggle_pinned_gen.go b/tg/tl_stories_toggle_pinned_gen.go index cc0fc9d2d4..e0eaed0252 100644 --- a/tg/tl_stories_toggle_pinned_gen.go +++ b/tg/tl_stories_toggle_pinned_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_toggle_pinned_slices_gen.go b/tg/tl_stories_toggle_pinned_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_toggle_pinned_slices_gen.go +++ b/tg/tl_stories_toggle_pinned_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_toggle_pinned_to_top_gen.go b/tg/tl_stories_toggle_pinned_to_top_gen.go index 139774c3cf..d95f1bde82 100644 --- a/tg/tl_stories_toggle_pinned_to_top_gen.go +++ b/tg/tl_stories_toggle_pinned_to_top_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_stories_toggle_pinned_to_top_slices_gen.go b/tg/tl_stories_toggle_pinned_to_top_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_stories_toggle_pinned_to_top_slices_gen.go +++ b/tg/tl_stories_toggle_pinned_to_top_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_fwd_header_gen.go b/tg/tl_story_fwd_header_gen.go index bfd4b68e98..a4638ee29e 100644 --- a/tg/tl_story_fwd_header_gen.go +++ b/tg/tl_story_fwd_header_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_fwd_header_slices_gen.go b/tg/tl_story_fwd_header_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_story_fwd_header_slices_gen.go +++ b/tg/tl_story_fwd_header_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_item_gen.go b/tg/tl_story_item_gen.go index 5db612a51e..6cca5985f0 100644 --- a/tg/tl_story_item_gen.go +++ b/tg/tl_story_item_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_item_slices_gen.go b/tg/tl_story_item_slices_gen.go index 3c46a5ecca..9de5b79f0f 100644 --- a/tg/tl_story_item_slices_gen.go +++ b/tg/tl_story_item_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_reaction_gen.go b/tg/tl_story_reaction_gen.go index 347ec4e0f6..4753466f74 100644 --- a/tg/tl_story_reaction_gen.go +++ b/tg/tl_story_reaction_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_reaction_slices_gen.go b/tg/tl_story_reaction_slices_gen.go index 0754508620..8631d1a644 100644 --- a/tg/tl_story_reaction_slices_gen.go +++ b/tg/tl_story_reaction_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_view_gen.go b/tg/tl_story_view_gen.go index 4d67c2c0b9..4550151e77 100644 --- a/tg/tl_story_view_gen.go +++ b/tg/tl_story_view_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_view_slices_gen.go b/tg/tl_story_view_slices_gen.go index d0de2f4a39..562fa22918 100644 --- a/tg/tl_story_view_slices_gen.go +++ b/tg/tl_story_view_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_views_gen.go b/tg/tl_story_views_gen.go index 6afcd4b2cf..b7c01ee03e 100644 --- a/tg/tl_story_views_gen.go +++ b/tg/tl_story_views_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_story_views_slices_gen.go b/tg/tl_story_views_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_story_views_slices_gen.go +++ b/tg/tl_story_views_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_string_gen.go b/tg/tl_string_gen.go index 532f85cee2..2bda24435a 100644 --- a/tg/tl_string_gen.go +++ b/tg/tl_string_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_string_slices_gen.go b/tg/tl_string_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_string_slices_gen.go +++ b/tg/tl_string_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_test_use_config_simple_gen.go b/tg/tl_test_use_config_simple_gen.go index e787d9d46e..837a10afe6 100644 --- a/tg/tl_test_use_config_simple_gen.go +++ b/tg/tl_test_use_config_simple_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_test_use_config_simple_slices_gen.go b/tg/tl_test_use_config_simple_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_test_use_config_simple_slices_gen.go +++ b/tg/tl_test_use_config_simple_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_test_use_error_gen.go b/tg/tl_test_use_error_gen.go index ca02bde369..88c497a5f7 100644 --- a/tg/tl_test_use_error_gen.go +++ b/tg/tl_test_use_error_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_test_use_error_slices_gen.go b/tg/tl_test_use_error_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_test_use_error_slices_gen.go +++ b/tg/tl_test_use_error_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_text_with_entities_gen.go b/tg/tl_text_with_entities_gen.go index 195b674ca1..8f10255e48 100644 --- a/tg/tl_text_with_entities_gen.go +++ b/tg/tl_text_with_entities_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_text_with_entities_slices_gen.go b/tg/tl_text_with_entities_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_text_with_entities_slices_gen.go +++ b/tg/tl_text_with_entities_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_theme_gen.go b/tg/tl_theme_gen.go index 9b43abc514..e539a529d8 100644 --- a/tg/tl_theme_gen.go +++ b/tg/tl_theme_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_theme_settings_gen.go b/tg/tl_theme_settings_gen.go index d0c8e4a3e1..5860fa2cb7 100644 --- a/tg/tl_theme_settings_gen.go +++ b/tg/tl_theme_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_theme_settings_slices_gen.go b/tg/tl_theme_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_theme_settings_slices_gen.go +++ b/tg/tl_theme_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_theme_slices_gen.go b/tg/tl_theme_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_theme_slices_gen.go +++ b/tg/tl_theme_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_timezone_gen.go b/tg/tl_timezone_gen.go index c326306f93..b1e66d9816 100644 --- a/tg/tl_timezone_gen.go +++ b/tg/tl_timezone_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_timezone_slices_gen.go b/tg/tl_timezone_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_timezone_slices_gen.go +++ b/tg/tl_timezone_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_top_peer_category_gen.go b/tg/tl_top_peer_category_gen.go index 31e31e112e..b281f69499 100644 --- a/tg/tl_top_peer_category_gen.go +++ b/tg/tl_top_peer_category_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_top_peer_category_peers_gen.go b/tg/tl_top_peer_category_peers_gen.go index 0ab90c9173..de75d58397 100644 --- a/tg/tl_top_peer_category_peers_gen.go +++ b/tg/tl_top_peer_category_peers_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_top_peer_category_peers_slices_gen.go b/tg/tl_top_peer_category_peers_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_top_peer_category_peers_slices_gen.go +++ b/tg/tl_top_peer_category_peers_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_top_peer_category_slices_gen.go b/tg/tl_top_peer_category_slices_gen.go index 591261d916..3363b75efd 100644 --- a/tg/tl_top_peer_category_slices_gen.go +++ b/tg/tl_top_peer_category_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_top_peer_gen.go b/tg/tl_top_peer_gen.go index 05ea7cc04a..fde55356a7 100644 --- a/tg/tl_top_peer_gen.go +++ b/tg/tl_top_peer_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_top_peer_slices_gen.go b/tg/tl_top_peer_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_top_peer_slices_gen.go +++ b/tg/tl_top_peer_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_true_gen.go b/tg/tl_true_gen.go index 93bb01515a..9ec7b2b145 100644 --- a/tg/tl_true_gen.go +++ b/tg/tl_true_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_true_slices_gen.go b/tg/tl_true_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_true_slices_gen.go +++ b/tg/tl_true_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_update_gen.go b/tg/tl_update_gen.go index 3867b44c91..215924178d 100644 --- a/tg/tl_update_gen.go +++ b/tg/tl_update_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_update_slices_gen.go b/tg/tl_update_slices_gen.go index 9b4e738fc3..b63cf76af6 100644 --- a/tg/tl_update_slices_gen.go +++ b/tg/tl_update_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_channel_difference_gen.go b/tg/tl_updates_channel_difference_gen.go index 892b33aae1..2be92f46fd 100644 --- a/tg/tl_updates_channel_difference_gen.go +++ b/tg/tl_updates_channel_difference_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_channel_difference_slices_gen.go b/tg/tl_updates_channel_difference_slices_gen.go index 15f4aad0ee..1d9329142b 100644 --- a/tg/tl_updates_channel_difference_slices_gen.go +++ b/tg/tl_updates_channel_difference_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_classifier_gen.go b/tg/tl_updates_classifier_gen.go index b2aac6294a..618cc14976 100644 --- a/tg/tl_updates_classifier_gen.go +++ b/tg/tl_updates_classifier_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_difference_gen.go b/tg/tl_updates_difference_gen.go index a0ab764c71..b6b3aad4f9 100644 --- a/tg/tl_updates_difference_gen.go +++ b/tg/tl_updates_difference_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_difference_slices_gen.go b/tg/tl_updates_difference_slices_gen.go index 43d20102d6..9018308b05 100644 --- a/tg/tl_updates_difference_slices_gen.go +++ b/tg/tl_updates_difference_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_gen.go b/tg/tl_updates_gen.go index 1b0c922643..f36003eb8c 100644 --- a/tg/tl_updates_gen.go +++ b/tg/tl_updates_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_get_channel_difference_gen.go b/tg/tl_updates_get_channel_difference_gen.go index f62933a263..bd81cec1a2 100644 --- a/tg/tl_updates_get_channel_difference_gen.go +++ b/tg/tl_updates_get_channel_difference_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_get_channel_difference_slices_gen.go b/tg/tl_updates_get_channel_difference_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_updates_get_channel_difference_slices_gen.go +++ b/tg/tl_updates_get_channel_difference_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_get_difference_gen.go b/tg/tl_updates_get_difference_gen.go index 82d9c1c6ed..b159ad4627 100644 --- a/tg/tl_updates_get_difference_gen.go +++ b/tg/tl_updates_get_difference_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_get_difference_slices_gen.go b/tg/tl_updates_get_difference_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_updates_get_difference_slices_gen.go +++ b/tg/tl_updates_get_difference_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_get_state_gen.go b/tg/tl_updates_get_state_gen.go index 489bbf7e67..fa28e6362b 100644 --- a/tg/tl_updates_get_state_gen.go +++ b/tg/tl_updates_get_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_get_state_slices_gen.go b/tg/tl_updates_get_state_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_updates_get_state_slices_gen.go +++ b/tg/tl_updates_get_state_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_slices_gen.go b/tg/tl_updates_slices_gen.go index 52d4146dd7..b5d19110c8 100644 --- a/tg/tl_updates_slices_gen.go +++ b/tg/tl_updates_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_state_gen.go b/tg/tl_updates_state_gen.go index c5d94a25ba..34b5195fc6 100644 --- a/tg/tl_updates_state_gen.go +++ b/tg/tl_updates_state_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_updates_state_slices_gen.go b/tg/tl_updates_state_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_updates_state_slices_gen.go +++ b/tg/tl_updates_state_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_cdn_file_gen.go b/tg/tl_upload_cdn_file_gen.go index 9de0670efd..0c84ffce92 100644 --- a/tg/tl_upload_cdn_file_gen.go +++ b/tg/tl_upload_cdn_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_cdn_file_slices_gen.go b/tg/tl_upload_cdn_file_slices_gen.go index c28a122a9d..b99af8085a 100644 --- a/tg/tl_upload_cdn_file_slices_gen.go +++ b/tg/tl_upload_cdn_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_file_gen.go b/tg/tl_upload_file_gen.go index b33c88d3f1..fe1fab5dd8 100644 --- a/tg/tl_upload_file_gen.go +++ b/tg/tl_upload_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_file_slices_gen.go b/tg/tl_upload_file_slices_gen.go index 4897069c29..fb2c2777b3 100644 --- a/tg/tl_upload_file_slices_gen.go +++ b/tg/tl_upload_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_cdn_file_gen.go b/tg/tl_upload_get_cdn_file_gen.go index e58c0408e9..63ee4d989f 100644 --- a/tg/tl_upload_get_cdn_file_gen.go +++ b/tg/tl_upload_get_cdn_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_cdn_file_hashes_gen.go b/tg/tl_upload_get_cdn_file_hashes_gen.go index 066b05eb92..5187617a8b 100644 --- a/tg/tl_upload_get_cdn_file_hashes_gen.go +++ b/tg/tl_upload_get_cdn_file_hashes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_cdn_file_hashes_slices_gen.go b/tg/tl_upload_get_cdn_file_hashes_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_upload_get_cdn_file_hashes_slices_gen.go +++ b/tg/tl_upload_get_cdn_file_hashes_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_cdn_file_slices_gen.go b/tg/tl_upload_get_cdn_file_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_upload_get_cdn_file_slices_gen.go +++ b/tg/tl_upload_get_cdn_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_file_gen.go b/tg/tl_upload_get_file_gen.go index ed87c79e6f..e11fdcd6c5 100644 --- a/tg/tl_upload_get_file_gen.go +++ b/tg/tl_upload_get_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_file_hashes_gen.go b/tg/tl_upload_get_file_hashes_gen.go index b5ced8bf18..40ae1d41a7 100644 --- a/tg/tl_upload_get_file_hashes_gen.go +++ b/tg/tl_upload_get_file_hashes_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_file_hashes_slices_gen.go b/tg/tl_upload_get_file_hashes_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_upload_get_file_hashes_slices_gen.go +++ b/tg/tl_upload_get_file_hashes_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_file_slices_gen.go b/tg/tl_upload_get_file_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_upload_get_file_slices_gen.go +++ b/tg/tl_upload_get_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_web_file_gen.go b/tg/tl_upload_get_web_file_gen.go index f08d43d4ff..dbb37e99d0 100644 --- a/tg/tl_upload_get_web_file_gen.go +++ b/tg/tl_upload_get_web_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_get_web_file_slices_gen.go b/tg/tl_upload_get_web_file_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_upload_get_web_file_slices_gen.go +++ b/tg/tl_upload_get_web_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_reupload_cdn_file_gen.go b/tg/tl_upload_reupload_cdn_file_gen.go index 0c7528e8d5..7cbe78ca69 100644 --- a/tg/tl_upload_reupload_cdn_file_gen.go +++ b/tg/tl_upload_reupload_cdn_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_reupload_cdn_file_slices_gen.go b/tg/tl_upload_reupload_cdn_file_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_upload_reupload_cdn_file_slices_gen.go +++ b/tg/tl_upload_reupload_cdn_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_save_big_file_part_gen.go b/tg/tl_upload_save_big_file_part_gen.go index 125c1273a1..b34d03311d 100644 --- a/tg/tl_upload_save_big_file_part_gen.go +++ b/tg/tl_upload_save_big_file_part_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_save_big_file_part_slices_gen.go b/tg/tl_upload_save_big_file_part_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_upload_save_big_file_part_slices_gen.go +++ b/tg/tl_upload_save_big_file_part_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_save_file_part_gen.go b/tg/tl_upload_save_file_part_gen.go index 5ad5098b63..8b932ab8c9 100644 --- a/tg/tl_upload_save_file_part_gen.go +++ b/tg/tl_upload_save_file_part_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_save_file_part_slices_gen.go b/tg/tl_upload_save_file_part_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_upload_save_file_part_slices_gen.go +++ b/tg/tl_upload_save_file_part_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_web_file_gen.go b/tg/tl_upload_web_file_gen.go index 6723936bf0..45857b713b 100644 --- a/tg/tl_upload_web_file_gen.go +++ b/tg/tl_upload_web_file_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_upload_web_file_slices_gen.go b/tg/tl_upload_web_file_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_upload_web_file_slices_gen.go +++ b/tg/tl_upload_web_file_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_url_auth_result_gen.go b/tg/tl_url_auth_result_gen.go index e367872db7..4171d10299 100644 --- a/tg/tl_url_auth_result_gen.go +++ b/tg/tl_url_auth_result_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_url_auth_result_slices_gen.go b/tg/tl_url_auth_result_slices_gen.go index 091183fe33..ed51c7a2e7 100644 --- a/tg/tl_url_auth_result_slices_gen.go +++ b/tg/tl_url_auth_result_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_class_vector_gen.go b/tg/tl_user_class_vector_gen.go index 5012e58f13..4d4813d3e2 100644 --- a/tg/tl_user_class_vector_gen.go +++ b/tg/tl_user_class_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_class_vector_slices_gen.go b/tg/tl_user_class_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_user_class_vector_slices_gen.go +++ b/tg/tl_user_class_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_full_gen.go b/tg/tl_user_full_gen.go index 51db60f63b..dcff3664dd 100644 --- a/tg/tl_user_full_gen.go +++ b/tg/tl_user_full_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_full_slices_gen.go b/tg/tl_user_full_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_user_full_slices_gen.go +++ b/tg/tl_user_full_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_gen.go b/tg/tl_user_gen.go index 1556d90026..e8a91a8307 100644 --- a/tg/tl_user_gen.go +++ b/tg/tl_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_profile_photo_gen.go b/tg/tl_user_profile_photo_gen.go index eda44116ed..1ccd0d2491 100644 --- a/tg/tl_user_profile_photo_gen.go +++ b/tg/tl_user_profile_photo_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_profile_photo_slices_gen.go b/tg/tl_user_profile_photo_slices_gen.go index fd3a618ab5..8fba64e15b 100644 --- a/tg/tl_user_profile_photo_slices_gen.go +++ b/tg/tl_user_profile_photo_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_slices_gen.go b/tg/tl_user_slices_gen.go index 0b7079d5aa..8ee1d44544 100644 --- a/tg/tl_user_slices_gen.go +++ b/tg/tl_user_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_star_gift_gen.go b/tg/tl_user_star_gift_gen.go index 0918c7fb47..d7019255a6 100644 --- a/tg/tl_user_star_gift_gen.go +++ b/tg/tl_user_star_gift_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_star_gift_slices_gen.go b/tg/tl_user_star_gift_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_user_star_gift_slices_gen.go +++ b/tg/tl_user_star_gift_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_status_gen.go b/tg/tl_user_status_gen.go index 18824102fa..712b6eb333 100644 --- a/tg/tl_user_status_gen.go +++ b/tg/tl_user_status_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_user_status_slices_gen.go b/tg/tl_user_status_slices_gen.go index bb5420937e..1ec18b4a22 100644 --- a/tg/tl_user_status_slices_gen.go +++ b/tg/tl_user_status_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_username_gen.go b/tg/tl_username_gen.go index a578a96859..13a8fcf367 100644 --- a/tg/tl_username_gen.go +++ b/tg/tl_username_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_username_slices_gen.go b/tg/tl_username_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_username_slices_gen.go +++ b/tg/tl_username_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_get_full_user_gen.go b/tg/tl_users_get_full_user_gen.go index 5323b5b2fd..2f5ca70ac7 100644 --- a/tg/tl_users_get_full_user_gen.go +++ b/tg/tl_users_get_full_user_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_get_full_user_slices_gen.go b/tg/tl_users_get_full_user_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_users_get_full_user_slices_gen.go +++ b/tg/tl_users_get_full_user_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_get_is_premium_required_to_contact_gen.go b/tg/tl_users_get_is_premium_required_to_contact_gen.go index a1970abfad..9b2d8babcf 100644 --- a/tg/tl_users_get_is_premium_required_to_contact_gen.go +++ b/tg/tl_users_get_is_premium_required_to_contact_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_get_is_premium_required_to_contact_slices_gen.go b/tg/tl_users_get_is_premium_required_to_contact_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_users_get_is_premium_required_to_contact_slices_gen.go +++ b/tg/tl_users_get_is_premium_required_to_contact_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_get_users_gen.go b/tg/tl_users_get_users_gen.go index c03f76c5c9..2a6f4cc80a 100644 --- a/tg/tl_users_get_users_gen.go +++ b/tg/tl_users_get_users_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_get_users_slices_gen.go b/tg/tl_users_get_users_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_users_get_users_slices_gen.go +++ b/tg/tl_users_get_users_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_set_secure_value_errors_gen.go b/tg/tl_users_set_secure_value_errors_gen.go index 8cdddbafbd..22a20a255f 100644 --- a/tg/tl_users_set_secure_value_errors_gen.go +++ b/tg/tl_users_set_secure_value_errors_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_set_secure_value_errors_slices_gen.go b/tg/tl_users_set_secure_value_errors_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_users_set_secure_value_errors_slices_gen.go +++ b/tg/tl_users_set_secure_value_errors_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_user_full_gen.go b/tg/tl_users_user_full_gen.go index e8521d96d1..f71843a77f 100644 --- a/tg/tl_users_user_full_gen.go +++ b/tg/tl_users_user_full_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_users_user_full_slices_gen.go b/tg/tl_users_user_full_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_users_user_full_slices_gen.go +++ b/tg/tl_users_user_full_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_video_size_gen.go b/tg/tl_video_size_gen.go index 372a2afc62..852b41f479 100644 --- a/tg/tl_video_size_gen.go +++ b/tg/tl_video_size_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_video_size_slices_gen.go b/tg/tl_video_size_slices_gen.go index 81e836b88d..1085a31d3c 100644 --- a/tg/tl_video_size_slices_gen.go +++ b/tg/tl_video_size_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_wall_paper_class_vector_gen.go b/tg/tl_wall_paper_class_vector_gen.go index 64ed7301b1..9f541f8251 100644 --- a/tg/tl_wall_paper_class_vector_gen.go +++ b/tg/tl_wall_paper_class_vector_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_wall_paper_class_vector_slices_gen.go b/tg/tl_wall_paper_class_vector_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_wall_paper_class_vector_slices_gen.go +++ b/tg/tl_wall_paper_class_vector_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_wall_paper_gen.go b/tg/tl_wall_paper_gen.go index dd531a4ec3..a0c042a962 100644 --- a/tg/tl_wall_paper_gen.go +++ b/tg/tl_wall_paper_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_wall_paper_settings_gen.go b/tg/tl_wall_paper_settings_gen.go index 8f3d9f8d11..c49bc34698 100644 --- a/tg/tl_wall_paper_settings_gen.go +++ b/tg/tl_wall_paper_settings_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_wall_paper_settings_slices_gen.go b/tg/tl_wall_paper_settings_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_wall_paper_settings_slices_gen.go +++ b/tg/tl_wall_paper_settings_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_wall_paper_slices_gen.go b/tg/tl_wall_paper_slices_gen.go index 3d04a8f770..f7b246b3ef 100644 --- a/tg/tl_wall_paper_slices_gen.go +++ b/tg/tl_wall_paper_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_authorization_gen.go b/tg/tl_web_authorization_gen.go index 3d17e08872..6feacbb1dd 100644 --- a/tg/tl_web_authorization_gen.go +++ b/tg/tl_web_authorization_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_authorization_slices_gen.go b/tg/tl_web_authorization_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_web_authorization_slices_gen.go +++ b/tg/tl_web_authorization_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_document_gen.go b/tg/tl_web_document_gen.go index f6bebb5032..41eb569494 100644 --- a/tg/tl_web_document_gen.go +++ b/tg/tl_web_document_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_document_slices_gen.go b/tg/tl_web_document_slices_gen.go index dd530e1fe6..37d7bf770e 100644 --- a/tg/tl_web_document_slices_gen.go +++ b/tg/tl_web_document_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_page_attribute_gen.go b/tg/tl_web_page_attribute_gen.go index 3117e63956..5553862e6b 100644 --- a/tg/tl_web_page_attribute_gen.go +++ b/tg/tl_web_page_attribute_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_page_attribute_slices_gen.go b/tg/tl_web_page_attribute_slices_gen.go index 81e978622b..bb2fc44b1d 100644 --- a/tg/tl_web_page_attribute_slices_gen.go +++ b/tg/tl_web_page_attribute_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_page_gen.go b/tg/tl_web_page_gen.go index 59a8163b12..b08e941d98 100644 --- a/tg/tl_web_page_gen.go +++ b/tg/tl_web_page_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_page_slices_gen.go b/tg/tl_web_page_slices_gen.go index f13013d03c..fb2a7563b3 100644 --- a/tg/tl_web_page_slices_gen.go +++ b/tg/tl_web_page_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_view_message_sent_gen.go b/tg/tl_web_view_message_sent_gen.go index 132180207f..b07dc219a0 100644 --- a/tg/tl_web_view_message_sent_gen.go +++ b/tg/tl_web_view_message_sent_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_view_message_sent_slices_gen.go b/tg/tl_web_view_message_sent_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_web_view_message_sent_slices_gen.go +++ b/tg/tl_web_view_message_sent_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_view_result_url_gen.go b/tg/tl_web_view_result_url_gen.go index 8d04f8db01..ba2776fc29 100644 --- a/tg/tl_web_view_result_url_gen.go +++ b/tg/tl_web_view_result_url_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tg/tl_web_view_result_url_slices_gen.go b/tg/tl_web_view_result_url_slices_gen.go index fe21471a4c..8ffe75a454 100644 --- a/tg/tl_web_view_result_url_slices_gen.go +++ b/tg/tl_web_view_result_url_slices_gen.go @@ -14,10 +14,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tgerr/error.go b/tgerr/error.go index 65b5ff6e69..329707cbc3 100644 --- a/tgerr/error.go +++ b/tgerr/error.go @@ -8,7 +8,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/ascii" + "github.com/beeper/td/ascii" ) // Error represents RPC error returned as result to request. diff --git a/tgerr/error_test.go b/tgerr/error_test.go index 9aaa285105..06cdfd6953 100644 --- a/tgerr/error_test.go +++ b/tgerr/error_test.go @@ -6,9 +6,9 @@ import ( "github.com/go-faster/errors" "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) func TestError(t *testing.T) { diff --git a/tgerr/flood_wait.go b/tgerr/flood_wait.go index cfe3632869..80a2a2aa9b 100644 --- a/tgerr/flood_wait.go +++ b/tgerr/flood_wait.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/gotd/td/clock" + "github.com/beeper/td/clock" ) // ErrPremiumFloodWait is error type of "FLOOD_PREMIUM_WAIT" error. diff --git a/tgmock/handler.go b/tgmock/handler.go index 46a0cb0b00..980c6d366b 100644 --- a/tgmock/handler.go +++ b/tgmock/handler.go @@ -1,6 +1,6 @@ package tgmock -import "github.com/gotd/td/bin" +import "github.com/beeper/td/bin" // Handler is a RPC call handler. type Handler interface { diff --git a/tgmock/invoke.go b/tgmock/invoke.go index af782c8275..90b8c9bcaa 100644 --- a/tgmock/invoke.go +++ b/tgmock/invoke.go @@ -6,8 +6,8 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" ) // Invoke implements tg.Invoker. diff --git a/tgmock/invoker.go b/tgmock/invoker.go index 92f065aa3b..7853b19dd0 100644 --- a/tgmock/invoker.go +++ b/tgmock/invoker.go @@ -3,7 +3,7 @@ package tgmock import ( "context" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Invoker implements tg.Invoker as function. diff --git a/tgmock/mock.go b/tgmock/mock.go index e701794db6..e22a5131aa 100644 --- a/tgmock/mock.go +++ b/tgmock/mock.go @@ -4,7 +4,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // TestingT is simplified *testing.T interface. diff --git a/tgmock/request.go b/tgmock/request.go index 5acf5cddf6..ae5490ebbf 100644 --- a/tgmock/request.go +++ b/tgmock/request.go @@ -4,9 +4,9 @@ import ( "strconv" "strings" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) func (i *Mock) request(fn func(b bin.Encoder)) *RequestBuilder { diff --git a/tgtest/buffered.go b/tgtest/buffered.go index bb5dfecc38..a6f4e73b8e 100644 --- a/tgtest/buffered.go +++ b/tgtest/buffered.go @@ -4,8 +4,8 @@ import ( "context" "sync" - "github.com/gotd/td/bin" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/transport" ) type bufferedConn struct { diff --git a/tgtest/buffered_test.go b/tgtest/buffered_test.go index 6d20713985..e7038f17e3 100644 --- a/tgtest/buffered_test.go +++ b/tgtest/buffered_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/gotd/td/bin" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/transport" ) func TestBufferedConn(t *testing.T) { diff --git a/tgtest/cluster/cluster.go b/tgtest/cluster/cluster.go index e23d86dad4..4f086ffbbe 100644 --- a/tgtest/cluster/cluster.go +++ b/tgtest/cluster/cluster.go @@ -6,12 +6,12 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/exchange" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgtest" - "github.com/gotd/td/tgtest/services/config" + "github.com/beeper/td/exchange" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgtest" + "github.com/beeper/td/tgtest/services/config" ) type setup struct { diff --git a/tgtest/cluster/dispatch.go b/tgtest/cluster/dispatch.go index 4d26de69bd..b81d7b4f8c 100644 --- a/tgtest/cluster/dispatch.go +++ b/tgtest/cluster/dispatch.go @@ -5,11 +5,11 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/crypto" - "github.com/gotd/td/exchange" - "github.com/gotd/td/tgtest" - "github.com/gotd/td/tgtest/services" - "github.com/gotd/td/transport" + "github.com/beeper/td/crypto" + "github.com/beeper/td/exchange" + "github.com/beeper/td/tgtest" + "github.com/beeper/td/tgtest/services" + "github.com/beeper/td/transport" ) // Common returns common dispatcher. diff --git a/tgtest/cluster/options.go b/tgtest/cluster/options.go index a21de6443f..d4b0e80ee4 100644 --- a/tgtest/cluster/options.go +++ b/tgtest/cluster/options.go @@ -5,10 +5,10 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/crypto" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/tg" - "github.com/gotd/td/transport" + "github.com/beeper/td/crypto" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/tg" + "github.com/beeper/td/transport" ) // Options of Cluster. diff --git a/tgtest/cluster/up.go b/tgtest/cluster/up.go index e27c874011..d29653b21c 100644 --- a/tgtest/cluster/up.go +++ b/tgtest/cluster/up.go @@ -10,9 +10,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/tg" - "github.com/gotd/td/transport" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/tg" + "github.com/beeper/td/transport" ) // Up runs all servers in a cluster. diff --git a/tgtest/conns.go b/tgtest/conns.go index 2486965e46..6c1a172598 100644 --- a/tgtest/conns.go +++ b/tgtest/conns.go @@ -5,8 +5,8 @@ import ( "go.uber.org/atomic" - "github.com/gotd/td/crypto" - "github.com/gotd/td/transport" + "github.com/beeper/td/crypto" + "github.com/beeper/td/transport" ) type connection struct { diff --git a/tgtest/dispatcher.go b/tgtest/dispatcher.go index 2966fd068b..224eb09bf7 100644 --- a/tgtest/dispatcher.go +++ b/tgtest/dispatcher.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Dispatcher is a plain handler to map requests by ID. diff --git a/tgtest/exchange.go b/tgtest/exchange.go index d059b29f97..47915c64f6 100644 --- a/tgtest/exchange.go +++ b/tgtest/exchange.go @@ -5,11 +5,11 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/exchange" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/exchange" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/transport" ) type exchangeConn struct { diff --git a/tgtest/exchange_test.go b/tgtest/exchange_test.go index 0922966c8a..bf809084b2 100644 --- a/tgtest/exchange_test.go +++ b/tgtest/exchange_test.go @@ -8,10 +8,10 @@ import ( "github.com/go-faster/errors" "github.com/stretchr/testify/assert" - "github.com/gotd/td/bin" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/transport" ) func Test_exchangeConn_Recv(t *testing.T) { diff --git a/tgtest/handle.go b/tgtest/handle.go index ea9b2f0931..f00c756439 100644 --- a/tgtest/handle.go +++ b/tgtest/handle.go @@ -8,12 +8,12 @@ import ( "go.uber.org/multierr" "go.uber.org/zap" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" - "github.com/gotd/td/tgerr" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/transport" ) func (s *Server) rpcHandle(ctx context.Context, c transport.Conn, b *bin.Buffer) error { diff --git a/tgtest/handler.go b/tgtest/handler.go index 6f25b31f35..a367837ef9 100644 --- a/tgtest/handler.go +++ b/tgtest/handler.go @@ -3,7 +3,7 @@ package tgtest import ( "context" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Request represents MTProto RPC request structure. diff --git a/tgtest/loop.go b/tgtest/loop.go index 78968aa31d..57d7601f4c 100644 --- a/tgtest/loop.go +++ b/tgtest/loop.go @@ -5,10 +5,10 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/exchange" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/exchange" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/transport" ) func (s *Server) read(ctx context.Context, conn transport.Conn, b *bin.Buffer) error { diff --git a/tgtest/loop_test.go b/tgtest/loop_test.go index 98f7e1bd2c..607ecafb8c 100644 --- a/tgtest/loop_test.go +++ b/tgtest/loop_test.go @@ -11,14 +11,14 @@ import ( "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" - "github.com/gotd/td/crypto" - "github.com/gotd/td/session" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/telegram" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgtest/cluster" - "github.com/gotd/td/tgtest/services" - "github.com/gotd/td/tgtest/services/config" + "github.com/beeper/td/crypto" + "github.com/beeper/td/session" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/telegram" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgtest/cluster" + "github.com/beeper/td/tgtest/services" + "github.com/beeper/td/tgtest/services/config" ) func TestSessionHandle(t *testing.T) { diff --git a/tgtest/middleware.go b/tgtest/middleware.go index 03038b00d0..d3976bd1e2 100644 --- a/tgtest/middleware.go +++ b/tgtest/middleware.go @@ -3,8 +3,8 @@ package tgtest import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" ) // UnpackInvoke is a simple Handler middleware to unpack some Invoke*-like requests. diff --git a/tgtest/send.go b/tgtest/send.go index fa8d2a70ff..07ec9b765e 100644 --- a/tgtest/send.go +++ b/tgtest/send.go @@ -6,12 +6,12 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mt" - "github.com/gotd/td/proto" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mt" + "github.com/beeper/td/proto" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) const ( diff --git a/tgtest/server.go b/tgtest/server.go index 49e68b5191..a2f36df1bd 100644 --- a/tgtest/server.go +++ b/tgtest/server.go @@ -11,13 +11,13 @@ import ( "go.uber.org/zap" "nhooyr.io/websocket" - "github.com/gotd/td/clock" - "github.com/gotd/td/crypto" - "github.com/gotd/td/exchange" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/tmap" - "github.com/gotd/td/transport" + "github.com/beeper/td/clock" + "github.com/beeper/td/crypto" + "github.com/beeper/td/exchange" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/tmap" + "github.com/beeper/td/transport" ) // Server is a MTProto server structure. diff --git a/tgtest/server_options.go b/tgtest/server_options.go index a078324061..1ee6f6e854 100644 --- a/tgtest/server_options.go +++ b/tgtest/server_options.go @@ -6,14 +6,14 @@ import ( "go.uber.org/zap" - "github.com/gotd/td/clock" - "github.com/gotd/td/crypto" - "github.com/gotd/td/mt" - "github.com/gotd/td/mtproto" - "github.com/gotd/td/proto" - "github.com/gotd/td/tg" - "github.com/gotd/td/tmap" - "github.com/gotd/td/transport" + "github.com/beeper/td/clock" + "github.com/beeper/td/crypto" + "github.com/beeper/td/mt" + "github.com/beeper/td/mtproto" + "github.com/beeper/td/proto" + "github.com/beeper/td/tg" + "github.com/beeper/td/tmap" + "github.com/beeper/td/transport" ) // ServerOptions of Server. diff --git a/tgtest/services/config/config.go b/tgtest/services/config/config.go index af670a24a9..2c96c9e353 100644 --- a/tgtest/services/config/config.go +++ b/tgtest/services/config/config.go @@ -4,10 +4,10 @@ package config import ( "context" - "github.com/gotd/td/bin" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgtest" - "github.com/gotd/td/tgtest/services" + "github.com/beeper/td/bin" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgtest" + "github.com/beeper/td/tgtest/services" ) // Service is a Telegram config service. diff --git a/tgtest/services/err.go b/tgtest/services/err.go index 9c4a89e130..59b3ed6d2b 100644 --- a/tgtest/services/err.go +++ b/tgtest/services/err.go @@ -1,8 +1,8 @@ package services import ( - "github.com/gotd/td/tgerr" - "github.com/gotd/td/tgtest" + "github.com/beeper/td/tgerr" + "github.com/beeper/td/tgtest" ) var ( diff --git a/tgtest/services/file/download.go b/tgtest/services/file/download.go index 85013c81a2..84cb33b013 100644 --- a/tgtest/services/file/download.go +++ b/tgtest/services/file/download.go @@ -6,9 +6,9 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/crypto" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/crypto" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) func getLocation(loc tg.InputFileLocationClass) (string, error) { diff --git a/tgtest/services/file/file.go b/tgtest/services/file/file.go index 55f5382589..d4dfdd9803 100644 --- a/tgtest/services/file/file.go +++ b/tgtest/services/file/file.go @@ -2,9 +2,9 @@ package file import ( - "github.com/gotd/td/tg" - "github.com/gotd/td/tgtest" - "github.com/gotd/td/tgtest/services" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgtest" + "github.com/beeper/td/tgtest/services" ) // Service is a Telegram file service. diff --git a/tgtest/services/file/storage.go b/tgtest/services/file/storage.go index 71e8abab27..b0503e58d4 100644 --- a/tgtest/services/file/storage.go +++ b/tgtest/services/file/storage.go @@ -5,7 +5,7 @@ import ( "sync" "sync/atomic" - "github.com/gotd/td/syncio" + "github.com/beeper/td/syncio" ) // File represents Telegram file. diff --git a/tgtest/services/file/upload.go b/tgtest/services/file/upload.go index da95e6c35d..f97b46d422 100644 --- a/tgtest/services/file/upload.go +++ b/tgtest/services/file/upload.go @@ -7,9 +7,9 @@ import ( "github.com/go-faster/errors" "go.uber.org/multierr" - "github.com/gotd/td/constant" - "github.com/gotd/td/tg" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/constant" + "github.com/beeper/td/tg" + "github.com/beeper/td/tgerr" ) // https://core.telegram.org/api/files#uploading-files diff --git a/tgtest/session.go b/tgtest/session.go index c3c6232ae6..1d735faccc 100644 --- a/tgtest/session.go +++ b/tgtest/session.go @@ -5,7 +5,7 @@ import ( "go.uber.org/zap/zapcore" - "github.com/gotd/td/crypto" + "github.com/beeper/td/crypto" ) // Session represents connection session. diff --git a/tgtest/test_transport.go b/tgtest/test_transport.go index c2f6a4525e..74a87f8a85 100644 --- a/tgtest/test_transport.go +++ b/tgtest/test_transport.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/assert" "go.uber.org/zap" - "github.com/gotd/td/tg" + "github.com/beeper/td/tg" ) type testTransportHandler struct { diff --git a/tgtest/vector.go b/tgtest/vector.go index 8452e31028..0e156ae216 100644 --- a/tgtest/vector.go +++ b/tgtest/vector.go @@ -3,7 +3,7 @@ package tgtest import ( "fmt" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // genericVector is a simple helper to encode a vector of TL objects. diff --git a/tgtest/vector_test.go b/tgtest/vector_test.go index c727d6dee4..cda0fbff90 100644 --- a/tgtest/vector_test.go +++ b/tgtest/vector_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/testutil" - "github.com/gotd/td/tg" + "github.com/beeper/td/bin" + "github.com/beeper/td/testutil" + "github.com/beeper/td/tg" ) type badEncoder struct{} diff --git a/tgtrace/tl_invoke_with_trace_gen.go b/tgtrace/tl_invoke_with_trace_gen.go index c9a5f313e8..5abebc12ba 100644 --- a/tgtrace/tl_invoke_with_trace_gen.go +++ b/tgtrace/tl_invoke_with_trace_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tgtrace/tl_registry_gen.go b/tgtrace/tl_registry_gen.go index 6bad1d748c..04da1e83c8 100644 --- a/tgtrace/tl_registry_gen.go +++ b/tgtrace/tl_registry_gen.go @@ -11,10 +11,10 @@ import ( "go.uber.org/multierr" - "github.com/gotd/td/bin" - "github.com/gotd/td/tdjson" - "github.com/gotd/td/tdp" - "github.com/gotd/td/tgerr" + "github.com/beeper/td/bin" + "github.com/beeper/td/tdjson" + "github.com/beeper/td/tdp" + "github.com/beeper/td/tgerr" ) // No-op definition for keeping imports. diff --git a/tmap/constructor.go b/tmap/constructor.go index 698f536ed4..6b9670d833 100644 --- a/tmap/constructor.go +++ b/tmap/constructor.go @@ -1,6 +1,6 @@ package tmap -import "github.com/gotd/td/bin" +import "github.com/beeper/td/bin" // Constructor maps type id to type constructor. type Constructor struct { diff --git a/transport/codec.go b/transport/codec.go index c6c351b89b..c53e9c214d 100644 --- a/transport/codec.go +++ b/transport/codec.go @@ -3,7 +3,7 @@ package transport import ( "io" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Codec is MTProto transport protocol encoding abstraction. diff --git a/transport/connection.go b/transport/connection.go index b1a28c1a8d..93f6fc6cee 100644 --- a/transport/connection.go +++ b/transport/connection.go @@ -8,7 +8,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) // Conn is transport connection. diff --git a/transport/connection_test.go b/transport/connection_test.go index f3ec5ddf93..95876eb431 100644 --- a/transport/connection_test.go +++ b/transport/connection_test.go @@ -9,8 +9,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" - "github.com/gotd/td/proto/codec" + "github.com/beeper/td/bin" + "github.com/beeper/td/proto/codec" ) func TestConnection(t *testing.T) { diff --git a/transport/detect_codec.go b/transport/detect_codec.go index 705b3281cf..5049b9e59e 100644 --- a/transport/detect_codec.go +++ b/transport/detect_codec.go @@ -6,7 +6,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/proto/codec" + "github.com/beeper/td/proto/codec" ) func detectCodec(c io.Reader) (Codec, io.Reader, error) { diff --git a/transport/detect_codec_test.go b/transport/detect_codec_test.go index 1e20e3605e..4014d538af 100644 --- a/transport/detect_codec_test.go +++ b/transport/detect_codec_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/proto/codec" + "github.com/beeper/td/proto/codec" ) func Test_detectCodec(t *testing.T) { diff --git a/transport/listener_test.go b/transport/listener_test.go index 3d43ded324..257bb9ec89 100644 --- a/transport/listener_test.go +++ b/transport/listener_test.go @@ -9,8 +9,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/testutil" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/testutil" ) type mockListener struct { diff --git a/transport/obfuscated.go b/transport/obfuscated.go index 68b4492498..3e668eb387 100644 --- a/transport/obfuscated.go +++ b/transport/obfuscated.go @@ -8,8 +8,8 @@ import ( "github.com/go-faster/errors" "go.uber.org/multierr" - "github.com/gotd/td/mtproxy/obfuscated2" - "github.com/gotd/td/proto/codec" + "github.com/beeper/td/mtproxy/obfuscated2" + "github.com/beeper/td/proto/codec" ) type obfListener struct { diff --git a/transport/once_close_test.go b/transport/once_close_test.go index 9a4875ffc2..4ef00a926f 100644 --- a/transport/once_close_test.go +++ b/transport/once_close_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/testutil" + "github.com/beeper/td/testutil" ) type closeMockListener struct { diff --git a/transport/protocol.go b/transport/protocol.go index ef0367ae3d..12c690ed81 100644 --- a/transport/protocol.go +++ b/transport/protocol.go @@ -5,7 +5,7 @@ import ( "github.com/go-faster/errors" - "github.com/gotd/td/proto/codec" + "github.com/beeper/td/proto/codec" ) // Protocol is MTProto transport protocol. diff --git a/transport/protocol_test.go b/transport/protocol_test.go index 26b05a63e8..3acd090f73 100644 --- a/transport/protocol_test.go +++ b/transport/protocol_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/gotd/td/bin" + "github.com/beeper/td/bin" ) func TestProtocol_Pipe(t *testing.T) { diff --git a/transport/websocket.go b/transport/websocket.go index e37be2cd0c..961e71749a 100644 --- a/transport/websocket.go +++ b/transport/websocket.go @@ -8,10 +8,10 @@ import ( "github.com/coder/websocket" - "github.com/gotd/td/mtproxy/obfuscated2" - "github.com/gotd/td/proto/codec" - "github.com/gotd/td/tdsync" - "github.com/gotd/td/wsutil" + "github.com/beeper/td/mtproxy/obfuscated2" + "github.com/beeper/td/proto/codec" + "github.com/beeper/td/tdsync" + "github.com/beeper/td/wsutil" ) type wsListener struct { diff --git a/transport/websocket_test.go b/transport/websocket_test.go index 86085f13dd..54ea7f1206 100644 --- a/transport/websocket_test.go +++ b/transport/websocket_test.go @@ -12,9 +12,9 @@ import ( "github.com/stretchr/testify/require" "golang.org/x/sync/errgroup" - "github.com/gotd/td/bin" - "github.com/gotd/td/telegram/dcs" - "github.com/gotd/td/transport" + "github.com/beeper/td/bin" + "github.com/beeper/td/telegram/dcs" + "github.com/beeper/td/transport" ) func TestWebsocketListener(t *testing.T) {