summaryrefslogtreecommitdiff
path: root/toolkitConfig.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-08 06:35:38 -0600
committerJeff Carr <[email protected]>2025-02-08 06:35:38 -0600
commitcbaa1c37132e73d4fd112418a7544ae71b46dfe0 (patch)
tree9beb21edf36124dcbaf5903f61a5bdd14866abbd /toolkitConfig.proto
parentcb76668f8e404fb9094cf7f30da5ccf971c82e0e (diff)
make a config filev0.22.7
Diffstat (limited to 'toolkitConfig.proto')
-rw-r--r--toolkitConfig.proto19
1 files changed, 19 insertions, 0 deletions
diff --git a/toolkitConfig.proto b/toolkitConfig.proto
new file mode 100644
index 0000000..a53fdc4
--- /dev/null
+++ b/toolkitConfig.proto
@@ -0,0 +1,19 @@
+// Copyright 2025 WIT.COM Inc Licensed GPL 3.0
+
+syntax = "proto3";
+
+package forgepb;
+
+import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
+
+message ToolkitConfig { //
+ string plugin = 1; // 'gocui', 'andlabs', etc
+ string name = 2; // variable name 'fullscreen'
+ string value = 3; // value "true"
+}
+
+message ToolkitConfigs { // `autogenpb:marshal` `autogenpb:nomutex`
+ string uuid = 1; // `autogenpb:uuid:d7886d47-a3b9-43b9-b0f6-17074a9844e6`
+ string version = 2; // `autogenpb:version:v0.0.1`
+ repeated ToolkitConfig ToolkitConfigs = 3;
+}