File: id.proto

package info (click to toggle)
golang-github-go-macaroon-bakery-macaroonpb 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 124 kB
  • sloc: makefile: 2
file content (14 lines) | stat: -rw-r--r-- 206 bytes parent folder | download
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;
}