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";

// output
message PromptOutput {
	string path = 1;
	string unique = 2;
}

message EventPromptOutputAdd {
	PromptOutput output = 1 [(gogoproto.nullable) = true];
}

message EventPromptOutputRemove {
	string unique = 1;
}

message EventPromptOutputList {
}