ec4e1b5da7
* wip * wip * improved validatation, test connection before save, code reuse * worker send to lnd * autowithdraw priority
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;
|
|
} |