mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 15:05:17 +01:00
14 lines
247 B
Protocol Buffer
14 lines
247 B
Protocol Buffer
syntax = "proto3";
|
|
package proto;
|
|
|
|
option go_package = "/csproto";
|
|
|
|
message SC_SYNC_CLIENT_REMOTE_TASK {
|
|
string task_id = 1;
|
|
string content = 2;
|
|
}
|
|
message CS_REPORT_CLIENT_REMOTE_TASK_RET {
|
|
string task_id = 1;
|
|
string result = 2;
|
|
}
|