10 lines
115 B
Protocol Buffer
10 lines
115 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message Request {
|
|
optional string name = 1;
|
|
}
|
|
|
|
message Response {
|
|
optional string msg = 1;
|
|
}
|