1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-04-04 20:44:27 +02:00
go-micro/template/proto/example/example.proto
2015-05-09 00:42:07 +01:00

10 lines
115 B
Protocol Buffer

syntax = "proto3";
message Request {
optional string name = 1;
}
message Response {
optional string msg = 1;
}