summaryrefslogtreecommitdiff
path: root/forgeConfig.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-02 04:13:27 -0600
committerJeff Carr <[email protected]>2025-03-02 04:13:27 -0600
commit4193f41847cec2878dab013f4329bed26568329f (patch)
treeb00221c81fa7d82e7da59662c2cf83b67273aa36 /forgeConfig.proto
parent9d5bae8a14d88c44cd191ed73a5c2db7543e7eec (diff)
move to better patchset protobuf
Diffstat (limited to 'forgeConfig.proto')
-rw-r--r--forgeConfig.proto7
1 files changed, 7 insertions, 0 deletions
diff --git a/forgeConfig.proto b/forgeConfig.proto
index 78dd5c3..1e963f8 100644
--- a/forgeConfig.proto
+++ b/forgeConfig.proto
@@ -53,3 +53,10 @@ message ForgeConfigs { // `autogenpb:mar
string defaultGui = 7; // default GUI plugin to use
ForgeMode mode = 8; // what "mode" forge is in
}
+
+// this generic message is used by autogen to identify and
+// then dump the uuid and version from any arbitrary .pb file
+message Identify { // `autogenpb:marshal`
+ string uuid = 1; //
+ string version = 2; //
+}