PracowniaProgramowania/backend/go_proto_buffer/person.proto
2018-11-18 23:42:18 +01:00

8 lines
89 B
Protocol Buffer

syntax="proto3"
package main;
message Person {
string name =1;
int32 age = 2;
}