summaryrefslogtreecommitdiff
path: root/kel_cmds/c++/cmd_schema.hpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-01-12 18:29:59 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-01-12 18:29:59 +0100
commit23d213d4263a746e3da9c360a1fc663020d324e9 (patch)
treecb495af745de3706095e79f9ccbc7999d5e96998 /kel_cmds/c++/cmd_schema.hpp
parent6eb839f219d80c018a58865a79f0623e839cef09 (diff)
downloadapps-dev_tools-23d213d4263a746e3da9c360a1fc663020d324e9.tar.gz
Dangling changes
Diffstat (limited to 'kel_cmds/c++/cmd_schema.hpp')
-rw-r--r--kel_cmds/c++/cmd_schema.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/kel_cmds/c++/cmd_schema.hpp b/kel_cmds/c++/cmd_schema.hpp
new file mode 100644
index 0000000..472fd9b
--- /dev/null
+++ b/kel_cmds/c++/cmd_schema.hpp
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "common.hpp"
+
+namespace kel {
+namespace sch {
+using namespace saw::schema;
+
+using CommandStruct = Struct<
+ Member<Array<String>, "command">
+>;
+
+using Commands = Struct<
+
+>;
+}
+
+
+}