mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 03:05:14 +00:00
16 lines
183 B
Protocol Buffer
16 lines
183 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package helloworld;
|
|
|
|
service Helloworld {
|
|
rpc Call(Request) returns (Response) {}
|
|
}
|
|
|
|
message Request {
|
|
string name = 1;
|
|
}
|
|
|
|
message Response {
|
|
string msg = 1;
|
|
}
|