member_webapp/@overflow/shared/auth/auth.module.ts

12 lines
246 B
TypeScript
Raw Normal View History

2018-05-28 05:41:56 +00:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-05-28 07:51:33 +00:00
import { AuthStoreModule } from './auth-store.module';
2018-05-28 05:41:56 +00:00
@NgModule({
imports: [
CommonModule,
2018-05-28 07:51:33 +00:00
AuthStoreModule,
2018-05-28 05:41:56 +00:00
],
})
export class AuthModule { }