From a101d966133a70b8a76526be25070436d14fcf9f Mon Sep 17 00:00:00 2001 From: Rastislav Szabo Date: Thu, 4 May 2017 11:09:03 +0200 Subject: initial commit Signed-off-by: Rastislav Szabo --- binapi_generator/doc.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 binapi_generator/doc.go (limited to 'binapi_generator/doc.go') 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 -- cgit