5
0
Fork 0
backend-protobuf/response.proto

11 lines
144 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
2019-06-23 08:35:57 +08:00
package protobuf;
import "client.proto";
message Response {
uint32 code = 1;
bytes message = 2;
Client client = 3;
}