mirror of https://github.com/abpframework/abp.git
2 changed files with 15 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
export * from './enums'; |
|||
export * from './providers'; |
|||
export * from './tenant-management-config.module'; |
|||
@ -0,0 +1,12 @@ |
|||
import { ModuleWithProviders, NgModule } from '@angular/core'; |
|||
import { TENANT_MANAGEMENT_ROUTE_PROVIDERS } from './providers/route.provider'; |
|||
|
|||
@NgModule() |
|||
export class TenantManagementConfigModule { |
|||
static forRoot(): ModuleWithProviders<TenantManagementConfigModule> { |
|||
return { |
|||
ngModule: TenantManagementConfigModule, |
|||
providers: [TENANT_MANAGEMENT_ROUTE_PROVIDERS], |
|||
}; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue