summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-31 13:24:00 -0600
committerJeff Carr <[email protected]>2024-12-31 13:24:00 -0600
commitf363c2317641adb7a66d82fcc3d5601e70f7c525 (patch)
tree85b1afd61911009e817016f1bf1e2aa312fb4448 /README
parentc9c98765d257d5898867512646627f02d2f583be (diff)
add example. and forgot the GPL!v0.0.36
Diffstat (limited to 'README')
-rw-r--r--README23
1 files changed, 23 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..da987ea
--- /dev/null
+++ b/README
@@ -0,0 +1,23 @@
+This app will autogenerate protobuf Sort() and Marshal() functions
+
+It was designed to work on .proto files designed with a standard
+way that utilizes this method:
+
+apple.proto should have
+
+message Apples {
+ string uuid
+ string version
+ repeaded Apple Apples
+}
+
+message Apple {
+ <whatever you want here>
+}
+
+This "scheme" as it were will be familar to others as a common way to pluralize data formats.
+In general, this is turning out to be a good way to handle protocol buffers for me so far.
+
+There are several things that can be put in the protobuf file to trigger what files are made.
+
+See the examples for how to do this.