micro/template/proto/example/example.proto

10 lines
115 B
Protocol Buffer
Raw Normal View History

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