mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 05:56:47 +01:00
12 lines
206 B
Protocol Buffer
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;
|
|
}
|