groupcache/groupcachepb/example.proto
William Bergeron-Drouin 6973935fd8
Update protos
2024-04-16 12:05:12 -04:00

12 lines
185 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;
}