aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/account/account.module.ts
blob: 53f6ba58e22ac22078d8e460966cd62011712573 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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: [
    AccountService
  ]
})
export class AccountModule { }