aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/account/account.module.ts
blob: 380e9d2354d74a2458b9348a83e38e8e5bf1b9f2 (plain) (tree)
1
2
3
4
5
6
7
8
                                        
 





                                                                          







                         


                                   





                    
               

                              
import { NgModule } from '@angular/core'

import { AccountRoutingModule } from './account-routing.module'
import { AccountComponent } from './account.component'
import { AccountChangePasswordComponent } from './account-change-password'
import { AccountDetailsComponent } from './account-details'
import { AccountService } from './account.service'
import { SharedModule } from '../shared'

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

  declarations: [
    AccountComponent,
    AccountChangePasswordComponent,
    AccountDetailsComponent
  ],

  exports: [
    AccountComponent
  ],

  providers: []
})
export class AccountModule { }