mirror of
https://github.com/mailgun/groupcache.git
synced 2024-11-16 14:10:04 +00:00
12 lines
182 B
Protocol Buffer
12 lines
182 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option go_package = "groupcache_test";
|
||
|
|
||
|
package groupcachepb;
|
||
|
|
||
|
message User {
|
||
|
string id = 1;
|
||
|
string name = 2;
|
||
|
int64 age = 3;
|
||
|
bool is_super = 4;
|
||
|
}
|