| 478 | |
| 479 | @Injectable() |
| 480 | export class MyHttpInterceptor implements HttpInterceptor { |
| 481 | constructor(private http: HttpClient) {} |
| 482 | |
| 483 | intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> { |
| 484 | return next.handle(req); |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | @NgModule({ |
| 489 | bootstrap: [MyServerApp], |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…