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