14 lines
203 B
Protocol Buffer
14 lines
203 B
Protocol Buffer
|
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;
|
||
|
}
|