aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-users/shared-users.module.ts
blob: efffc6026a9770cf2c53adbbb2d7f1bd2bbdb83d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { NgModule } from '@angular/core'
import { SharedMainModule } from '../shared-main/shared-main.module'
import { TwoFactorService } from './two-factor.service'
import { UserAdminService } from './user-admin.service'

@NgModule({
  imports: [
    SharedMainModule
  ],

  declarations: [ ],

  exports: [],

  providers: [
    UserAdminService,
    TwoFactorService
  ]
})
export class SharedUsersModule { }