We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddfd8fb commit b938f08Copy full SHA for b938f08
docs/core/client/rest.md
@@ -95,14 +95,22 @@ type Client struct {
95
}
96
```
97
98
- New
+### New
99
100
New creates and returns a new Client object.
101
102
```go title="Signature"
103
func New() *Client
104
105
106
+### NewWithClient
107
+
108
+NewWithClient creates and returns a new Client object from an existing client object.
109
110
+```go title="Signature"
111
+func NewWithClient(c *fasthttp.Client) *Client
112
+```
113
114
## REST Methods
115
116
### Get
0 commit comments