12 lines
246 B
TypeScript
Raw Normal View History

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