27 lines
551 B
TypeScript
27 lines
551 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { NoAuthProbeStoreModule } from './noauth-probe-store.module';
|
|
|
|
import { COMPONENTS } from './component';
|
|
import { SERVICES } from './service';
|
|
import { MaterialModule } from 'app/commons/ui/material/material.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
NoAuthProbeStoreModule,
|
|
MaterialModule
|
|
],
|
|
declarations: [
|
|
COMPONENTS,
|
|
],
|
|
exports: [
|
|
COMPONENTS,
|
|
],
|
|
providers: [
|
|
SERVICES,
|
|
]
|
|
})
|
|
export class NoauthModule { }
|