From 1ba50a8aed5b57f81352f429653463eaa832418a Mon Sep 17 00:00:00 2001 From: Vinitkumar041196 Date: Mon, 14 Aug 2023 14:59:58 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 704d92b..f0b0997 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ go get github.com/fiorix/wsdl2go tl;dr ``` -wsdl2go < file.wsdl > hello.go +wsdl2go -i -o ``` wsdl2go is a code generator that consumes WSDL from stdin (or file, or URL) and produces Go on stdout. The generated code contains services and methods described in the WSDL input, in a single output file. It is your responsibility to make it a package, in the sense that you put it in a directory that makes sense for you, and import it in your code later. Note that the generated code depends on the "soap" package that is part of this project.