Babylonia-terminal/babylonia_terminal_launcher/messages/config.proto

24 lines
403 B
Protocol Buffer

syntax = "proto3";
package config;
// [RINF:DART-SIGNAL]
message ConfigInput {}
// [RINF:RUST-SIGNAL]
message ConfigOutput {
string configPath = 1;
}
// [RINF:DART-SIGNAL]
message GetLaunchOptionsInput {}
// [RINF:RUST-SIGNAL]
message GetLaunchOptionsOutput {
optional string launchOptions = 1;
}
// [RINF:DART-SIGNAL]
message SetLaunchOptionsInput {
optional string launchOptions = 1;
}