diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 08:59:33 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 08:59:33 -0500 |
| commit | 52089cf062d916f005e82e98f6f4a48d1920cfb5 (patch) | |
| tree | 4720f53eb54321781c812101696babb01980b8e3 | |
| parent | 96a32319c7c8a92c12a838ab56a4c56d2dffe80b (diff) | |
| -rw-r--r-- | README | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -1,4 +1,14 @@ -# This app will autogenerate Sort() and Marshal() functions for .proto files +# This app auto-generates *.pb.go files +# +# It assumes you are doing GO development in ~/go/src +# Although it might work with go.work directory setups +# I haven't tested that much yet because I haven't had time + +# This app DOES NOT LIKE THINGS WHEN THE PATHS ARE NOT ABSOLUTE GO namespace paths +# that is, if you make a go.work file and tell it gitea.mystuff.org/foo is actually in foo/ +# none of the autogen things will probably work. Notsure. Anyway, it's not interesting +# to me to try that since this is hard enough already I don't have time to debug that +# but will of course accept patches # It was designed to work on .proto files designed with a .proto standard @@ -11,3 +21,5 @@ # See the examples/ for a sample fruit.proto file that documents what is needed +# You will notice if you have checked out this project the *pb.go files are ignored in the .gitignore +# file. See the app 'forge' on how publishing and versioning works with this codebase. |
