check-and-exclude-config.module.ts 536 B

123456789101112131415161718
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { CheckAndExcludeConfigRoutingModule } from './check-and-exclude-config-routing.module';
  4. import { CheckAndExcludeConfigComponent } from './check-and-exclude-config.component';
  5. import { ShareModule } from 'src/app/share/share.module';
  6. @NgModule({
  7. declarations: [CheckAndExcludeConfigComponent],
  8. imports: [
  9. CommonModule,
  10. CheckAndExcludeConfigRoutingModule,
  11. ShareModule,
  12. ]
  13. })
  14. export class CheckAndExcludeConfigModule { }