mirror of
https://github.com/ALEZ-DEV/Babylonia-terminal.git
synced 2025-12-16 01:18:50 +00:00
24 lines
403 B
Protocol Buffer
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;
|
|
}
|