- Rename package/module from toki_socket to proto_socket in Dart, Kotlin, Python - Update crosstest implementations to use renamed packages - Add new proto_socket skill, deprecate add-toki-socket-crosstest-language skill - Update domain rules for all languages - Update documentation (README, PORTING_GUIDE, PROTOCOL, VERSIONING)
16 lines
216 B
Protocol Buffer
16 lines
216 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message PacketBase {
|
|
string typeName = 1;
|
|
int32 nonce = 2;
|
|
bytes data = 3;
|
|
int32 responseNonce = 4;
|
|
}
|
|
|
|
message HeartBeat {}
|
|
|
|
message TestData {
|
|
int32 index = 1;
|
|
string message = 2;
|
|
}
|
|
|