summaryrefslogtreecommitdiffstats
path: root/binapi_generator/doc.go
diff options
context:
space:
mode:
Diffstat (limited to 'binapi_generator/doc.go')
-rw-r--r--binapi_generator/doc.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/binapi_generator/doc.go b/binapi_generator/doc.go
new file mode 100644
index 0000000..84a971b
--- /dev/null
+++ b/binapi_generator/doc.go
@@ -0,0 +1,13 @@
+// Generator of Go structs out of the VPP binary API definitions in JSON format.
+//
+// The JSON input can be specified as a single file (using the `input-file`
+// CLI flag), or as a directory that will be scanned for all `.json` files
+// (using the `input-dir` CLI flag). The generated Go bindings will be
+// placed into `output-dir` (by default the current working directory),
+// where each Go package will be placed into its own separate directory,
+// for example:
+//
+// binapi_generator --input-file=examples/bin_api/acl.api.json --output-dir=examples/bin_api
+// binapi_generator --input-dir=examples/bin_api --output-dir=examples/bin_api
+//
+package main