summaryrefslogtreecommitdiff
path: root/macaroonbakery/internal/id.proto
blob: eb3d614b3c58d3d9092f45fe83c6cdd0e63e11cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}