mirror of
https://github.com/project-gauntlet/gauntlet.git
synced 2025-12-23 10:35:53 +00:00
25 lines
508 B
Protocol Buffer
25 lines
508 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
service RpcBackend {
|
|
// cli
|
|
rpc BackendForCliApi(RpcBincode) returns (RpcBincode);
|
|
|
|
// settings
|
|
rpc BackendForSettingsApi(RpcBincode) returns (RpcBincode);
|
|
|
|
// dev tools, screenshot gen
|
|
rpc SaveLocalPlugin (RpcSaveLocalPluginRequest) returns (RpcSaveLocalPluginResponse);
|
|
}
|
|
|
|
message RpcBincode {
|
|
bytes data = 1;
|
|
}
|
|
|
|
message RpcSaveLocalPluginRequest {
|
|
string path = 1;
|
|
}
|
|
|
|
message RpcSaveLocalPluginResponse {
|
|
string stdout_file_path = 1;
|
|
string stderr_file_path = 2;
|
|
}
|