kplayer-rust-wrap 1.4.0

libkplayer plugin wrap for rust
Documentation
syntax = "proto3";

package KPProto.Prompt;

option go_package = "github.com/bytelang/kplayer/types/core/proto/prompt";

import "gogoproto/gogo.proto";

// plugin

message PromptPlugin {
	string path = 1;
	string unique = 2;
	map<string, string> params = 4;
}

message EventPromptPluginAdd {
	PromptPlugin plugin = 1 [(gogoproto.nullable) = true];
}

message EventPromptPluginRemove {
	string unique = 1;
}

message EventPromptPluginList {
}

message EventPromptPluginUpdate {
	string unique = 1;
	map<string, string> params= 2;
}