mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-29 05:31:51 +02: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;
|
|
}
|