(url string, httpclient *http.Client)
| 82 | } |
| 83 | |
| 84 | func NewClient(url string, httpclient *http.Client) Client { |
| 85 | return &gqlclient{ |
| 86 | gql: client.NewGQLClient(url, httpclient), |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | func NewDebugClient(url string, httpclient *http.Client) Client { |
| 91 | return &gqlclient{ |