Files
yaak-mountain-loop/proto/plugins/runtime.proto
2024-08-09 14:37:43 -07:00

12 lines
206 B
Protocol Buffer

syntax = "proto3";
package yaak.plugins.runtime;
service PluginRuntime {
rpc EventStream (stream EventStreamEvent) returns (stream EventStreamEvent);
}
message EventStreamEvent {
string event = 1;
}