mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-14 12:25:14 +00:00
17 lines
393 B
TypeScript
17 lines
393 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { HTTP_INTERCEPTORS } from '@angular/common/http';
|
|
import { FuseLoadingInterceptor } from '@fuse/services/loading/loading.interceptor';
|
|
|
|
@NgModule({
|
|
providers: [
|
|
{
|
|
provide : HTTP_INTERCEPTORS,
|
|
useClass: FuseLoadingInterceptor,
|
|
multi : true
|
|
}
|
|
]
|
|
})
|
|
export class FuseLoadingModule
|
|
{
|
|
}
|