1// src/app/app.module.ts
2
3import { HTTP_INTERCEPTORS } from '@angular/common/http';
4import { TokenInterceptor } from './../auth/token.interceptor';
5
6@NgModule({
7 bootstrap: [AppComponent],
8 imports: [...],
9 providers: [
10 {
11 provide: HTTP_INTERCEPTORS,
12 useClass: TokenInterceptor,
13 multi: true
14 }
15 ]
16})
17export class AppModule {}
18