stacker.news/lib/macaroon-id.proto

14 lines
203 B
Protocol Buffer
Raw Normal View History

syntax="proto3";
option go_package = "macaroonpb";
message MacaroonId {
bytes nonce = 1;
bytes storageId = 2;
repeated Op ops = 3;
}
message Op {
string entity = 1;
repeated string actions = 2;
}