aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/account/account.module.ts
blob: 75f2ee6f9b33d8ac7ecf230073d7306e7327fc48 (plain) (tree)




















                                                                
               

                              
import { NgModule } from '@angular/core';

import { AccountRoutingModule } from './account-routing.module';
import { AccountComponent } from './account.component';
import { AccountService } from './account.service';
import { SharedModule } from '../shared';

@NgModule({
  imports: [
    AccountRoutingModule,
    SharedModule
  ],

  declarations: [
    AccountComponent
  ],

  exports: [
    AccountComponent
  ],

  providers: []
})
export class AccountModule { }