]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs.module.ts
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cephfs / cephfs.module.ts
CommitLineData
11fdf7f2
TL
1import { CommonModule } from '@angular/common';
2import { NgModule } from '@angular/core';
3
4import { ChartsModule } from 'ng2-charts/ng2-charts';
5import { ProgressbarModule } from 'ngx-bootstrap/progressbar';
6import { TabsModule } from 'ngx-bootstrap/tabs';
7
8import { AppRoutingModule } from '../../app-routing.module';
9import { SharedModule } from '../../shared/shared.module';
10import { CephfsChartComponent } from './cephfs-chart/cephfs-chart.component';
11import { CephfsClientsComponent } from './cephfs-clients/cephfs-clients.component';
12import { CephfsDetailComponent } from './cephfs-detail/cephfs-detail.component';
13import { CephfsListComponent } from './cephfs-list/cephfs-list.component';
14
15@NgModule({
16 imports: [
17 CommonModule,
18 SharedModule,
19 AppRoutingModule,
20 ChartsModule,
21 ProgressbarModule.forRoot(),
22 TabsModule.forRoot()
23 ],
24 declarations: [
25 CephfsDetailComponent,
26 CephfsClientsComponent,
27 CephfsChartComponent,
28 CephfsListComponent
29 ]
30})
31export class CephfsModule {}