14 lines
355 B
Protocol Buffer
14 lines
355 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package pluginutil.multiplexing;
|
||
|
|
||
|
option go_package = "github.com/hashicorp/vault/sdk/helper/pluginutil";
|
||
|
|
||
|
message MultiplexingSupportRequest {}
|
||
|
message MultiplexingSupportResponse {
|
||
|
bool supported = 1;
|
||
|
}
|
||
|
|
||
|
service PluginMultiplexing {
|
||
|
rpc MultiplexingSupport(MultiplexingSupportRequest) returns (MultiplexingSupportResponse);
|
||
|
}
|