Skip to content

Commit

Permalink
Improve doc
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ-Jackson committed Feb 3, 2019
1 parent 3b7f7d8 commit d492e89
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions request.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"fmt"
)

// Soap Request
type Request struct {
Method string
Params Params
Expand Down
1 change: 1 addition & 0 deletions response.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"fmt"
)

// Soap Response
type Response struct {
Body []byte
Header []byte
Expand Down
1 change: 1 addition & 0 deletions soap.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ func (c *Client) SetWSDL(wsdl string) {
c.initWsdl()
}

// Process Soap Request
func (c *Client) Do(req *Request) (res *Response, err error) {
c.onDefinitionsRefresh.Wait()
c.onRequest.Add(1)
Expand Down

0 comments on commit d492e89

Please sign in to comment.