10 lines
212 B
Protocol Buffer
10 lines
212 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "github.com/hashicorp/vault/helper/forwarding/types.proto";
|
||
|
|
||
|
package vault;
|
||
|
|
||
|
service ForwardedRequestHandler {
|
||
|
rpc HandleRequest(forwarding.Request) returns (forwarding.Response) {}
|
||
|
}
|