- Add Python toki_socket package (base_client, communicator, tcp/ws client/server) - Add protobuf message definitions for Python - Add go_python.go cross-test implementation and python_go_client - Add agent-task/python_impl plan and code review docs - Update .gitignore for Python cache files with recursive patterns
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;
|
|
}
|
|
|