mirror of https://github.com/abpframework/abp
parent
21e3d9aac5
commit
aec2181d54
@ -0,0 +1,3 @@
|
|||||||
|
export * from './enums';
|
||||||
|
export * from './providers';
|
||||||
|
export * from './setting-management-config.module';
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
import { ModuleWithProviders, NgModule } from '@angular/core';
|
||||||
|
import { SETTING_MANAGEMENT_ROUTE_PROVIDERS } from './providers/route.provider';
|
||||||
|
|
||||||
|
@NgModule()
|
||||||
|
export class SettingManagementConfigModule {
|
||||||
|
static forRoot(): ModuleWithProviders<SettingManagementConfigModule> {
|
||||||
|
return {
|
||||||
|
ngModule: SettingManagementConfigModule,
|
||||||
|
providers: [SETTING_MANAGEMENT_ROUTE_PROVIDERS],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in new issue