mirror of
https://github.com/go-micro/go-micro.git
synced 2025-04-04 20:44:27 +02:00
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;
|
|
}
|