(path: string)
| 59 | constructor(private readonly opts: HttpClientOptions) {} |
| 60 | |
| 61 | private url(path: string): string { |
| 62 | return `${this.opts.baseUrl}${this.opts.apiPrefix}${path}`; |
| 63 | } |
| 64 | |
| 65 | private async request<T>( |
| 66 | method: string, |
no outgoing calls
no test coverage detected