From d59ed9818bc0a08eaa30ee556c9285b7a5f40000 Mon Sep 17 00:00:00 2001 From: Camilo Aguilar Date: Wed, 15 Jan 2014 19:01:27 -0500 Subject: [PATCH] Updates README --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 6ca7404..fd74936 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,20 @@ Generates Go code from a WSDL file. This project is originally intended to gener * Resolves external XML Schemas recursively, up to 5 recursions. * Supports providing WSDL HTTP URL as well as a local WSDL file +### Usage +``` +gowsdl [OPTIONS] + +Application Options: + -v, --version Shows gowsdl version + -p, --package= Package under which code will be generated (myservice) + -o, --output= File where the generated code will be saved (myservice.go) + -i, --ignore-tls Ignores invalid TLS certificates. It is not recomended for production. Use at your own risk + (false) + +Help Options: + -h, --help Show this help message +``` ### TODO * If WSDL file is local, resolve external XML schemas locally too instead of failing due to not having a URL to download them from.