├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── mtproto ├── auth_helper.go ├── birthday_helper.go ├── build2.sh ├── chat_admin_rights.go ├── chat_banned_rights.go ├── chat_helper.go ├── class_id_registers.tl.go ├── class_name_registers.go ├── codec_schema.tl.pb.go ├── codec_util.go ├── core_types.go ├── crypto │ ├── access_hash.go │ ├── access_hash_test.go │ ├── aes256_ige_cryptor.go │ ├── aes256_ige_cryptor_test.go │ ├── aes_cbc_cryptor.go │ ├── aes_cbc_cryptor_test.go │ ├── aes_ctr128_encrypt.go │ ├── aes_ctr128_encrypt_test.go │ ├── auth_key.go │ ├── crypto_util.go │ ├── md5_file.go │ ├── rsa_cryptor.go │ ├── rsa_cryptor_test.go │ ├── srp_util.go │ ├── srp_util_test.go │ ├── test_pkcs1.key │ └── tools │ │ ├── README.md │ │ ├── fingerprint.go │ │ ├── pub.pem │ │ ├── public_key.pem │ │ ├── public_pkcs1.key │ │ ├── public_pkcs8.pub │ │ ├── server_pkcs1.key │ │ ├── server_pkcs8.key │ │ ├── test.key │ │ ├── tg_pub.pem │ │ ├── tg_pub2.pem │ │ ├── tg_public_key.pem │ │ └── tg_public_key2.pem ├── debug_string_util.go ├── decode.go ├── dialog_filter_helper.go ├── document_helper.go ├── encode.go ├── encode_decode_test.go ├── geo_point.go ├── id_list_helper.go ├── image_thumbnail_types.go ├── immutable_chat_participant_helper.go ├── immutable_user_helper.go ├── json_value_helper.go ├── message.go ├── message_action.go ├── message_box_helper.go ├── message_box_list_helper.go ├── message_box_list_helper_test.go ├── message_build_help.go ├── message_filter_util.go ├── message_object.go ├── mime_type.go ├── mtproto_message.go ├── mtproto_util.go ├── mutable_chat_helper.go ├── mutable_users.go ├── parsed_manually_types.go ├── peer_color_helper.go ├── peer_notify_settings_helper.go ├── peer_util.go ├── photo_helper.go ├── poll.go ├── privacy_rule_helper.go ├── reaction_helper.go ├── reply_markup_helper.go ├── rpc │ └── metadata │ │ ├── DOC.md │ │ ├── README.md │ │ ├── build2.sh │ │ ├── doc.go │ │ ├── nicemd.go │ │ ├── nicemd_test.go │ │ ├── rpc_metadata.pb.go │ │ ├── rpc_metadata.proto │ │ ├── rpc_metadata_codec.go │ │ └── single_key.go ├── rpc_client_registers.go ├── rpc_error_codes.go ├── rpc_error_util.go ├── rpc_error_util_test.go ├── schema.tl.core_types.pb.go ├── schema.tl.core_types.proto ├── schema.tl.crc32.pb.go ├── schema.tl.crc32.proto ├── schema.tl.crc32_helper.pb.go ├── schema.tl.handshake.pb.go ├── schema.tl.handshake.proto ├── schema.tl.handshake_service.pb.go ├── schema.tl.handshake_service.proto ├── schema.tl.handshake_service_grpc.pb.go ├── schema.tl.sync.pb.go ├── schema.tl.sync.proto ├── schema.tl.sync_helper.go ├── schema.tl.sync_service.pb.go ├── schema.tl.sync_service.proto ├── schema.tl.sync_service_grpc.pb.go ├── schema.tl.transport.pb.go ├── schema.tl.transport.proto ├── schema.tl.transport_service.pb.go ├── schema.tl.transport_service.proto ├── service_notification_helper.go ├── update_type.go ├── updates_helper.go ├── updates_visited_helper.go ├── upload.go ├── user_helper.go ├── user_status_helper.go └── vars.go └── v2 ├── bin ├── bin.go ├── bytes.go ├── decoder.go ├── encoder.go ├── errors.go ├── fields.go ├── int128.go ├── int128_test.go ├── int256.go ├── int256_test.go └── string.go ├── crypto ├── access_hash.go ├── access_hash_test.go ├── aes256_ige_cryptor.go ├── aes256_ige_cryptor_test.go ├── aes_cbc_cryptor.go ├── aes_cbc_cryptor_test.go ├── aes_ctr128_encrypt.go ├── aes_ctr128_encrypt_test.go ├── auth_key.go ├── crypto_util.go ├── md5_file.go ├── rsa_cryptor.go ├── rsa_cryptor_test.go ├── srp_util.go ├── srp_util_test.go ├── test_pkcs1.key └── tools │ ├── README.md │ ├── fingerprint.go │ ├── pub.pem │ ├── public_key.pem │ ├── test.key │ ├── tg_pub.pem │ ├── tg_pub2.pem │ ├── tg_public_key.pem │ └── tg_public_key2.pem ├── go.mod ├── go.sum ├── iface ├── clazz_id_registers.tl.go ├── clazz_name_registers.go ├── ecode │ ├── coderr.go │ └── error.go ├── examples │ └── echo.tl.go ├── iface.go ├── kitex_service_info_registers.go ├── rpc_client_registers.go └── vars.go ├── mt ├── clazz_id.tl.go ├── clazz_id_registers.tl.go ├── clazz_name_registers.tl.go ├── mt.go ├── parsed_manually_types.go ├── rpc_error_util.go ├── schema.tl.mt.pb.go └── schema.tl.mt_service.pb.go ├── rpc ├── codec │ ├── codec.go │ └── meta.go └── examples │ └── echo │ ├── client │ ├── echo_client.go │ └── t │ │ └── main.go │ ├── cmd │ └── echo │ │ └── main.go │ ├── echo │ ├── clazz_id_registers.tl.go │ ├── clazz_name_registers.go │ ├── echo │ │ ├── client.go │ │ ├── echo.go │ │ ├── invoker.go │ │ └── server.go │ ├── schema.tl.clazz_id_helper.go │ ├── schema.tl.echo.pb.go │ └── schema.tl.echo_service.pb.go │ ├── etc │ └── etc.yaml │ └── internal │ ├── config │ └── config.go │ ├── core │ ├── core.go │ └── echo.echo_handler.go │ ├── server │ ├── server.go │ └── tg │ │ └── service │ │ ├── echo_service_impl.go │ │ └── service.go │ └── svc │ └── service_context.go ├── tg ├── auth_helper.go ├── birthday_helper.go ├── clazz_id.tl.go ├── clazz_id_registers.tl.go ├── clazz_name_registers.tl.go ├── future_salts.go ├── message_build_help.go ├── peer_util.go ├── privacy_rule_helper.go ├── rpc_client_registers.go ├── rpc_error_codes.go ├── rpc_error_util.go ├── rpc_error_util_test.go ├── schema.tl.tg.pb.go ├── schema.tl.tg_service.pb.go ├── t │ └── t.go ├── tg.go ├── user_helper.go └── vars.go └── tgapi └── tgapi.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/go.sum -------------------------------------------------------------------------------- /mtproto/auth_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/auth_helper.go -------------------------------------------------------------------------------- /mtproto/birthday_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/birthday_helper.go -------------------------------------------------------------------------------- /mtproto/build2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/build2.sh -------------------------------------------------------------------------------- /mtproto/chat_admin_rights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/chat_admin_rights.go -------------------------------------------------------------------------------- /mtproto/chat_banned_rights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/chat_banned_rights.go -------------------------------------------------------------------------------- /mtproto/chat_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/chat_helper.go -------------------------------------------------------------------------------- /mtproto/class_id_registers.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/class_id_registers.tl.go -------------------------------------------------------------------------------- /mtproto/class_name_registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/class_name_registers.go -------------------------------------------------------------------------------- /mtproto/codec_schema.tl.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/codec_schema.tl.pb.go -------------------------------------------------------------------------------- /mtproto/codec_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/codec_util.go -------------------------------------------------------------------------------- /mtproto/core_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/core_types.go -------------------------------------------------------------------------------- /mtproto/crypto/access_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/access_hash.go -------------------------------------------------------------------------------- /mtproto/crypto/access_hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/access_hash_test.go -------------------------------------------------------------------------------- /mtproto/crypto/aes256_ige_cryptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/aes256_ige_cryptor.go -------------------------------------------------------------------------------- /mtproto/crypto/aes256_ige_cryptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/aes256_ige_cryptor_test.go -------------------------------------------------------------------------------- /mtproto/crypto/aes_cbc_cryptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/aes_cbc_cryptor.go -------------------------------------------------------------------------------- /mtproto/crypto/aes_cbc_cryptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/aes_cbc_cryptor_test.go -------------------------------------------------------------------------------- /mtproto/crypto/aes_ctr128_encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/aes_ctr128_encrypt.go -------------------------------------------------------------------------------- /mtproto/crypto/aes_ctr128_encrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/aes_ctr128_encrypt_test.go -------------------------------------------------------------------------------- /mtproto/crypto/auth_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/auth_key.go -------------------------------------------------------------------------------- /mtproto/crypto/crypto_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/crypto_util.go -------------------------------------------------------------------------------- /mtproto/crypto/md5_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/md5_file.go -------------------------------------------------------------------------------- /mtproto/crypto/rsa_cryptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/rsa_cryptor.go -------------------------------------------------------------------------------- /mtproto/crypto/rsa_cryptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/rsa_cryptor_test.go -------------------------------------------------------------------------------- /mtproto/crypto/srp_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/srp_util.go -------------------------------------------------------------------------------- /mtproto/crypto/srp_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/srp_util_test.go -------------------------------------------------------------------------------- /mtproto/crypto/test_pkcs1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/test_pkcs1.key -------------------------------------------------------------------------------- /mtproto/crypto/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/README.md -------------------------------------------------------------------------------- /mtproto/crypto/tools/fingerprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/fingerprint.go -------------------------------------------------------------------------------- /mtproto/crypto/tools/pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/pub.pem -------------------------------------------------------------------------------- /mtproto/crypto/tools/public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/public_key.pem -------------------------------------------------------------------------------- /mtproto/crypto/tools/public_pkcs1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/public_pkcs1.key -------------------------------------------------------------------------------- /mtproto/crypto/tools/public_pkcs8.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/public_pkcs8.pub -------------------------------------------------------------------------------- /mtproto/crypto/tools/server_pkcs1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/server_pkcs1.key -------------------------------------------------------------------------------- /mtproto/crypto/tools/server_pkcs8.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/server_pkcs8.key -------------------------------------------------------------------------------- /mtproto/crypto/tools/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/test.key -------------------------------------------------------------------------------- /mtproto/crypto/tools/tg_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/tg_pub.pem -------------------------------------------------------------------------------- /mtproto/crypto/tools/tg_pub2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/tg_pub2.pem -------------------------------------------------------------------------------- /mtproto/crypto/tools/tg_public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/tg_public_key.pem -------------------------------------------------------------------------------- /mtproto/crypto/tools/tg_public_key2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/crypto/tools/tg_public_key2.pem -------------------------------------------------------------------------------- /mtproto/debug_string_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/debug_string_util.go -------------------------------------------------------------------------------- /mtproto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/decode.go -------------------------------------------------------------------------------- /mtproto/dialog_filter_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/dialog_filter_helper.go -------------------------------------------------------------------------------- /mtproto/document_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/document_helper.go -------------------------------------------------------------------------------- /mtproto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/encode.go -------------------------------------------------------------------------------- /mtproto/encode_decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/encode_decode_test.go -------------------------------------------------------------------------------- /mtproto/geo_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/geo_point.go -------------------------------------------------------------------------------- /mtproto/id_list_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/id_list_helper.go -------------------------------------------------------------------------------- /mtproto/image_thumbnail_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/image_thumbnail_types.go -------------------------------------------------------------------------------- /mtproto/immutable_chat_participant_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/immutable_chat_participant_helper.go -------------------------------------------------------------------------------- /mtproto/immutable_user_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/immutable_user_helper.go -------------------------------------------------------------------------------- /mtproto/json_value_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/json_value_helper.go -------------------------------------------------------------------------------- /mtproto/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/message.go -------------------------------------------------------------------------------- /mtproto/message_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/message_action.go -------------------------------------------------------------------------------- /mtproto/message_box_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/message_box_helper.go -------------------------------------------------------------------------------- /mtproto/message_box_list_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/message_box_list_helper.go -------------------------------------------------------------------------------- /mtproto/message_box_list_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/message_box_list_helper_test.go -------------------------------------------------------------------------------- /mtproto/message_build_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/message_build_help.go -------------------------------------------------------------------------------- /mtproto/message_filter_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/message_filter_util.go -------------------------------------------------------------------------------- /mtproto/message_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/message_object.go -------------------------------------------------------------------------------- /mtproto/mime_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/mime_type.go -------------------------------------------------------------------------------- /mtproto/mtproto_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/mtproto_message.go -------------------------------------------------------------------------------- /mtproto/mtproto_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/mtproto_util.go -------------------------------------------------------------------------------- /mtproto/mutable_chat_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/mutable_chat_helper.go -------------------------------------------------------------------------------- /mtproto/mutable_users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/mutable_users.go -------------------------------------------------------------------------------- /mtproto/parsed_manually_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/parsed_manually_types.go -------------------------------------------------------------------------------- /mtproto/peer_color_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/peer_color_helper.go -------------------------------------------------------------------------------- /mtproto/peer_notify_settings_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/peer_notify_settings_helper.go -------------------------------------------------------------------------------- /mtproto/peer_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/peer_util.go -------------------------------------------------------------------------------- /mtproto/photo_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/photo_helper.go -------------------------------------------------------------------------------- /mtproto/poll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/poll.go -------------------------------------------------------------------------------- /mtproto/privacy_rule_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/privacy_rule_helper.go -------------------------------------------------------------------------------- /mtproto/reaction_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/reaction_helper.go -------------------------------------------------------------------------------- /mtproto/reply_markup_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/reply_markup_helper.go -------------------------------------------------------------------------------- /mtproto/rpc/metadata/DOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/DOC.md -------------------------------------------------------------------------------- /mtproto/rpc/metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/README.md -------------------------------------------------------------------------------- /mtproto/rpc/metadata/build2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/build2.sh -------------------------------------------------------------------------------- /mtproto/rpc/metadata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/doc.go -------------------------------------------------------------------------------- /mtproto/rpc/metadata/nicemd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/nicemd.go -------------------------------------------------------------------------------- /mtproto/rpc/metadata/nicemd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/nicemd_test.go -------------------------------------------------------------------------------- /mtproto/rpc/metadata/rpc_metadata.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/rpc_metadata.pb.go -------------------------------------------------------------------------------- /mtproto/rpc/metadata/rpc_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/rpc_metadata.proto -------------------------------------------------------------------------------- /mtproto/rpc/metadata/rpc_metadata_codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/rpc_metadata_codec.go -------------------------------------------------------------------------------- /mtproto/rpc/metadata/single_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc/metadata/single_key.go -------------------------------------------------------------------------------- /mtproto/rpc_client_registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc_client_registers.go -------------------------------------------------------------------------------- /mtproto/rpc_error_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc_error_codes.go -------------------------------------------------------------------------------- /mtproto/rpc_error_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc_error_util.go -------------------------------------------------------------------------------- /mtproto/rpc_error_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/rpc_error_util_test.go -------------------------------------------------------------------------------- /mtproto/schema.tl.core_types.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.core_types.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.core_types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.core_types.proto -------------------------------------------------------------------------------- /mtproto/schema.tl.crc32.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.crc32.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.crc32.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.crc32.proto -------------------------------------------------------------------------------- /mtproto/schema.tl.crc32_helper.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.crc32_helper.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.handshake.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.handshake.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.handshake.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.handshake.proto -------------------------------------------------------------------------------- /mtproto/schema.tl.handshake_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.handshake_service.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.handshake_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.handshake_service.proto -------------------------------------------------------------------------------- /mtproto/schema.tl.handshake_service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.handshake_service_grpc.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.sync.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.sync.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.sync.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.sync.proto -------------------------------------------------------------------------------- /mtproto/schema.tl.sync_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.sync_helper.go -------------------------------------------------------------------------------- /mtproto/schema.tl.sync_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.sync_service.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.sync_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.sync_service.proto -------------------------------------------------------------------------------- /mtproto/schema.tl.sync_service_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.sync_service_grpc.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.transport.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.transport.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.transport.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.transport.proto -------------------------------------------------------------------------------- /mtproto/schema.tl.transport_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.transport_service.pb.go -------------------------------------------------------------------------------- /mtproto/schema.tl.transport_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/schema.tl.transport_service.proto -------------------------------------------------------------------------------- /mtproto/service_notification_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/service_notification_helper.go -------------------------------------------------------------------------------- /mtproto/update_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/update_type.go -------------------------------------------------------------------------------- /mtproto/updates_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/updates_helper.go -------------------------------------------------------------------------------- /mtproto/updates_visited_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/updates_visited_helper.go -------------------------------------------------------------------------------- /mtproto/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/upload.go -------------------------------------------------------------------------------- /mtproto/user_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/user_helper.go -------------------------------------------------------------------------------- /mtproto/user_status_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/user_status_helper.go -------------------------------------------------------------------------------- /mtproto/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/mtproto/vars.go -------------------------------------------------------------------------------- /v2/bin/bin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/bin.go -------------------------------------------------------------------------------- /v2/bin/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/bytes.go -------------------------------------------------------------------------------- /v2/bin/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/decoder.go -------------------------------------------------------------------------------- /v2/bin/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/encoder.go -------------------------------------------------------------------------------- /v2/bin/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/errors.go -------------------------------------------------------------------------------- /v2/bin/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/fields.go -------------------------------------------------------------------------------- /v2/bin/int128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/int128.go -------------------------------------------------------------------------------- /v2/bin/int128_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/int128_test.go -------------------------------------------------------------------------------- /v2/bin/int256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/int256.go -------------------------------------------------------------------------------- /v2/bin/int256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/int256_test.go -------------------------------------------------------------------------------- /v2/bin/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/bin/string.go -------------------------------------------------------------------------------- /v2/crypto/access_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/access_hash.go -------------------------------------------------------------------------------- /v2/crypto/access_hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/access_hash_test.go -------------------------------------------------------------------------------- /v2/crypto/aes256_ige_cryptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/aes256_ige_cryptor.go -------------------------------------------------------------------------------- /v2/crypto/aes256_ige_cryptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/aes256_ige_cryptor_test.go -------------------------------------------------------------------------------- /v2/crypto/aes_cbc_cryptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/aes_cbc_cryptor.go -------------------------------------------------------------------------------- /v2/crypto/aes_cbc_cryptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/aes_cbc_cryptor_test.go -------------------------------------------------------------------------------- /v2/crypto/aes_ctr128_encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/aes_ctr128_encrypt.go -------------------------------------------------------------------------------- /v2/crypto/aes_ctr128_encrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/aes_ctr128_encrypt_test.go -------------------------------------------------------------------------------- /v2/crypto/auth_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/auth_key.go -------------------------------------------------------------------------------- /v2/crypto/crypto_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/crypto_util.go -------------------------------------------------------------------------------- /v2/crypto/md5_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/md5_file.go -------------------------------------------------------------------------------- /v2/crypto/rsa_cryptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/rsa_cryptor.go -------------------------------------------------------------------------------- /v2/crypto/rsa_cryptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/rsa_cryptor_test.go -------------------------------------------------------------------------------- /v2/crypto/srp_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/srp_util.go -------------------------------------------------------------------------------- /v2/crypto/srp_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/srp_util_test.go -------------------------------------------------------------------------------- /v2/crypto/test_pkcs1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/test_pkcs1.key -------------------------------------------------------------------------------- /v2/crypto/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/tools/README.md -------------------------------------------------------------------------------- /v2/crypto/tools/fingerprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/tools/fingerprint.go -------------------------------------------------------------------------------- /v2/crypto/tools/pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/tools/pub.pem -------------------------------------------------------------------------------- /v2/crypto/tools/public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/tools/public_key.pem -------------------------------------------------------------------------------- /v2/crypto/tools/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/tools/test.key -------------------------------------------------------------------------------- /v2/crypto/tools/tg_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/tools/tg_pub.pem -------------------------------------------------------------------------------- /v2/crypto/tools/tg_pub2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/tools/tg_pub2.pem -------------------------------------------------------------------------------- /v2/crypto/tools/tg_public_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/tools/tg_public_key.pem -------------------------------------------------------------------------------- /v2/crypto/tools/tg_public_key2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/crypto/tools/tg_public_key2.pem -------------------------------------------------------------------------------- /v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/go.mod -------------------------------------------------------------------------------- /v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/go.sum -------------------------------------------------------------------------------- /v2/iface/clazz_id_registers.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/iface/clazz_id_registers.tl.go -------------------------------------------------------------------------------- /v2/iface/clazz_name_registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/iface/clazz_name_registers.go -------------------------------------------------------------------------------- /v2/iface/ecode/coderr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/iface/ecode/coderr.go -------------------------------------------------------------------------------- /v2/iface/ecode/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/iface/ecode/error.go -------------------------------------------------------------------------------- /v2/iface/examples/echo.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/iface/examples/echo.tl.go -------------------------------------------------------------------------------- /v2/iface/iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/iface/iface.go -------------------------------------------------------------------------------- /v2/iface/kitex_service_info_registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/iface/kitex_service_info_registers.go -------------------------------------------------------------------------------- /v2/iface/rpc_client_registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/iface/rpc_client_registers.go -------------------------------------------------------------------------------- /v2/iface/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/iface/vars.go -------------------------------------------------------------------------------- /v2/mt/clazz_id.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/mt/clazz_id.tl.go -------------------------------------------------------------------------------- /v2/mt/clazz_id_registers.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/mt/clazz_id_registers.tl.go -------------------------------------------------------------------------------- /v2/mt/clazz_name_registers.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/mt/clazz_name_registers.tl.go -------------------------------------------------------------------------------- /v2/mt/mt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/mt/mt.go -------------------------------------------------------------------------------- /v2/mt/parsed_manually_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/mt/parsed_manually_types.go -------------------------------------------------------------------------------- /v2/mt/rpc_error_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/mt/rpc_error_util.go -------------------------------------------------------------------------------- /v2/mt/schema.tl.mt.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/mt/schema.tl.mt.pb.go -------------------------------------------------------------------------------- /v2/mt/schema.tl.mt_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/mt/schema.tl.mt_service.pb.go -------------------------------------------------------------------------------- /v2/rpc/codec/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/codec/codec.go -------------------------------------------------------------------------------- /v2/rpc/codec/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/codec/meta.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/client/echo_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/client/echo_client.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/client/t/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/client/t/main.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/cmd/echo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/cmd/echo/main.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/echo/clazz_id_registers.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/echo/clazz_id_registers.tl.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/echo/clazz_name_registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/echo/clazz_name_registers.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/echo/echo/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/echo/echo/client.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/echo/echo/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/echo/echo/echo.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/echo/echo/invoker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/echo/echo/invoker.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/echo/echo/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/echo/echo/server.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/echo/schema.tl.clazz_id_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/echo/schema.tl.clazz_id_helper.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/echo/schema.tl.echo.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/echo/schema.tl.echo.pb.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/echo/schema.tl.echo_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/echo/schema.tl.echo_service.pb.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/etc/etc.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v2/rpc/examples/echo/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/internal/config/config.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/internal/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/internal/core/core.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/internal/core/echo.echo_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/internal/core/echo.echo_handler.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/internal/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/internal/server/server.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/internal/server/tg/service/echo_service_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/internal/server/tg/service/echo_service_impl.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/internal/server/tg/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/internal/server/tg/service/service.go -------------------------------------------------------------------------------- /v2/rpc/examples/echo/internal/svc/service_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/rpc/examples/echo/internal/svc/service_context.go -------------------------------------------------------------------------------- /v2/tg/auth_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/auth_helper.go -------------------------------------------------------------------------------- /v2/tg/birthday_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/birthday_helper.go -------------------------------------------------------------------------------- /v2/tg/clazz_id.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/clazz_id.tl.go -------------------------------------------------------------------------------- /v2/tg/clazz_id_registers.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/clazz_id_registers.tl.go -------------------------------------------------------------------------------- /v2/tg/clazz_name_registers.tl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/clazz_name_registers.tl.go -------------------------------------------------------------------------------- /v2/tg/future_salts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/future_salts.go -------------------------------------------------------------------------------- /v2/tg/message_build_help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/message_build_help.go -------------------------------------------------------------------------------- /v2/tg/peer_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/peer_util.go -------------------------------------------------------------------------------- /v2/tg/privacy_rule_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/privacy_rule_helper.go -------------------------------------------------------------------------------- /v2/tg/rpc_client_registers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/rpc_client_registers.go -------------------------------------------------------------------------------- /v2/tg/rpc_error_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/rpc_error_codes.go -------------------------------------------------------------------------------- /v2/tg/rpc_error_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/rpc_error_util.go -------------------------------------------------------------------------------- /v2/tg/rpc_error_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/rpc_error_util_test.go -------------------------------------------------------------------------------- /v2/tg/schema.tl.tg.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/schema.tl.tg.pb.go -------------------------------------------------------------------------------- /v2/tg/schema.tl.tg_service.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/schema.tl.tg_service.pb.go -------------------------------------------------------------------------------- /v2/tg/t/t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/t/t.go -------------------------------------------------------------------------------- /v2/tg/tg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/tg.go -------------------------------------------------------------------------------- /v2/tg/user_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/user_helper.go -------------------------------------------------------------------------------- /v2/tg/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tg/vars.go -------------------------------------------------------------------------------- /v2/tgapi/tgapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teamgram/proto/HEAD/v2/tgapi/tgapi.go --------------------------------------------------------------------------------