]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/shared/shared-admin.module.ts
Put video quota info in its own component
[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 { UserRealQuotaInfoComponent } from './user-real-quota-info.component'
4
5 @NgModule({
6 imports: [
7 SharedMainModule
8 ],
9
10 declarations: [
11 UserRealQuotaInfoComponent
12 ],
13
14 exports: [
15 UserRealQuotaInfoComponent
16 ],
17
18 providers: []
19 })
20 export class SharedAdminModule { }