]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/shared/shared-admin.module.ts
Translated using Weblate (Persian)
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / shared / shared-admin.module.ts
1 import { NgModule } from '@angular/core'
2 import { SharedMainModule } from '../../shared/shared-main/shared-main.module'
3 import { UserEmailInfoComponent } from './user-email-info.component'
4 import { UserRealQuotaInfoComponent } from './user-real-quota-info.component'
5
6 @NgModule({
7 imports: [
8 SharedMainModule
9 ],
10
11 declarations: [
12 UserRealQuotaInfoComponent,
13 UserEmailInfoComponent
14 ],
15
16 exports: [
17 UserRealQuotaInfoComponent,
18 UserEmailInfoComponent
19 ],
20
21 providers: []
22 })
23 export class SharedAdminModule { }