19 lines
No EOL
310 B
Protocol Buffer
19 lines
No EOL
310 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package simple.v1;
|
|
|
|
// A simple message to test protobuf code generation
|
|
message Person {
|
|
string name = 1;
|
|
int32 age = 2;
|
|
string email = 3;
|
|
}
|
|
|
|
// A simple service request/response
|
|
message GetPersonRequest {
|
|
string person_id = 1;
|
|
}
|
|
|
|
message GetPersonResponse {
|
|
Person person = 1;
|
|
} |