14 lines
229 B
Protocol Buffer
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;
|
|
}
|