(ctx context.Context, reqEditors ...RequestEditorFn)
| 228 | } |
| 229 | |
| 230 | func (c *Client) GetOther(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) { |
| 231 | req, err := NewGetOtherRequest(c.Server) |
| 232 | if err != nil { |
| 233 | return nil, err |
| 234 | } |
| 235 | req = req.WithContext(ctx) |
| 236 | if err := c.applyEditors(ctx, req, reqEditors); err != nil { |
| 237 | return nil, err |
| 238 | } |
| 239 | return c.Client.Do(req) |
| 240 | } |
| 241 | |
| 242 | func (c *Client) GetJsonWithTrailingSlash(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) { |
| 243 | req, err := NewGetJsonWithTrailingSlashRequest(c.Server) |
nothing calls this directly
no test coverage detected