19 lines
289 B
Protocol Buffer
19 lines
289 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package arbiter.client.vault;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
import "shared/vault.proto";
|
|
|
|
message Request {
|
|
oneof payload {
|
|
google.protobuf.Empty query_state = 1;
|
|
}
|
|
}
|
|
|
|
message Response {
|
|
oneof payload {
|
|
arbiter.shared.VaultState state = 1;
|
|
}
|
|
}
|