diff options
| author | Jeff Carr <[email protected]> | 2024-12-31 13:24:00 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-31 13:24:00 -0600 |
| commit | f363c2317641adb7a66d82fcc3d5601e70f7c525 (patch) | |
| tree | 85b1afd61911009e817016f1bf1e2aa312fb4448 /README | |
| parent | c9c98765d257d5898867512646627f02d2f583be (diff) | |
add example. and forgot the GPL!v0.0.36
Diffstat (limited to 'README')
| -rw-r--r-- | README | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -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. |
