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

10 lines
115 B
Protocol Buffer
Raw Normal View History

2015-05-09 00:42:07 +01:00
syntax = "proto3";
2015-01-13 23:31:27 +00:00
message Request {
2015-05-09 00:42:07 +01:00
optional string name = 1;
2015-01-13 23:31:27 +00:00
}
message Response {
2015-05-09 00:42:07 +01:00
optional string msg = 1;
2015-01-13 23:31:27 +00:00
}