(authService: AuthService, log?: (...args: unknown[]) => void)
| 17 | private baseUrl: string |
| 18 | |
| 19 | constructor(authService: AuthService, log?: (...args: unknown[]) => void) { |
| 20 | this.authService = authService |
| 21 | this.log = log || console.log |
| 22 | this.baseUrl = getRooCodeApiUrl() |
| 23 | } |
| 24 | |
| 25 | private async request<T>( |
| 26 | endpoint: string, |
nothing calls this directly
no test coverage detected