From f363c2317641adb7a66d82fcc3d5601e70f7c525 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 31 Dec 2024 13:24:00 -0600 Subject: add example. and forgot the GPL! --- README | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README (limited to 'README') 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 { + +} + +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. -- cgit v1.2.3