初始化
This commit is contained in:
10
duoge/person.proto
Normal file
10
duoge/person.proto
Normal file
@@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package tutorial;
|
||||
|
||||
// 定义一个Person消息类型
|
||||
message Person {
|
||||
string name = 1;
|
||||
int32 id = 2;
|
||||
string email = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user