Plugin runtime v2 (#62)

This commit is contained in:
Gregory Schier
2024-08-08 21:30:59 -07:00
committed by GitHub
parent f967820f12
commit 063e6cf00c
64 changed files with 1539 additions and 705 deletions

View File

@@ -3,10 +3,7 @@ syntax = "proto3";
package yaak.plugins.runtime;
service PluginRuntime {
rpc hookImport (HookImportRequest) returns (HookResponse);
rpc hookExport (HookExportRequest) returns (HookResponse);
rpc hookResponseFilter (HookResponseFilterRequest) returns (HookResponse);
}
rpc EventStream (stream EventStreamEvent) returns (stream EventStreamEvent);}
message PluginInfo {
string plugin = 1;
@@ -30,3 +27,7 @@ message HookResponseFilterRequest {
message HookExportRequest {
string request = 1;
}
message EventStreamEvent {
string event = 1;
}