mangayomi/messages/boa_js.proto
2024-01-24 03:33:41 +09:00

14 lines
229 B
Protocol Buffer

syntax = "proto3";
package boa_js;
// [RINF:DART-SIGNAL]
message BoaInput {
int32 interaction_id = 1;
string code_script = 2;
}
// [RINF:RUST-SIGNAL]
message BoaOutput {
int32 interaction_id = 1;
string response = 2;
}