import { AuthInterceptor } from "./auth.interceptor"import { HTTP_INTERCEPTORS } from "@angular/common/http"@NgModule({ providers: [ { provide: HTTP_INTERCEPTORS, useClass: AuthInterceptor, multi: true } ]})