mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-13 11:35:26 +00:00
17 lines
225 B
Protocol Buffer
17 lines
225 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package helloworld;
|
|
option go_package = "./proto;helloworld";
|
|
|
|
service Helloworld {
|
|
rpc Call(Request) returns (Response) {}
|
|
}
|
|
|
|
message Request {
|
|
string name = 1;
|
|
}
|
|
|
|
message Response {
|
|
string msg = 1;
|
|
}
|