summaryrefslogtreecommitdiff
path: root/cli/msg.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/msg.fbs')
-rw-r--r--cli/msg.fbs11
1 files changed, 11 insertions, 0 deletions
diff --git a/cli/msg.fbs b/cli/msg.fbs
index d217fc7ba..ff5454a91 100644
--- a/cli/msg.fbs
+++ b/cli/msg.fbs
@@ -3,6 +3,8 @@ union Any {
Chdir,
Chmod,
Close,
+ CompilerConfig,
+ CompilerConfigRes,
CopyFile,
Cwd,
CwdRes,
@@ -174,6 +176,15 @@ table StartRes {
no_color: bool;
}
+table CompilerConfig {
+ compiler_type: string;
+}
+
+table CompilerConfigRes {
+ path: string;
+ data: [ubyte];
+}
+
table FormatError {
error: string;
}