blob: 5a1675dc94c25565bf0a19f4116503353adaf376 (
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
|
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'
import { UserSignupService } from './user-signup.service'
@NgModule({
imports: [
SharedMainModule
],
declarations: [ ],
exports: [],
providers: [
UserSignupService,
UserAdminService,
TwoFactorService
]
})
export class SharedUsersModule { }
|