]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs.module.ts
41b58a0a36b124e14fa2d499175a39cbef99fa11
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cephfs / cephfs.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3
4 import { TreeModule } from '@circlon/angular-tree-component';
5 import { NgbNavModule } from '@ng-bootstrap/ng-bootstrap';
6 import { ChartsModule } from 'ng2-charts';
7
8 import { AppRoutingModule } from '~/app/app-routing.module';
9 import { SharedModule } from '~/app/shared/shared.module';
10 import { CephfsChartComponent } from './cephfs-chart/cephfs-chart.component';
11 import { CephfsClientsComponent } from './cephfs-clients/cephfs-clients.component';
12 import { CephfsDetailComponent } from './cephfs-detail/cephfs-detail.component';
13 import { CephfsDirectoriesComponent } from './cephfs-directories/cephfs-directories.component';
14 import { CephfsListComponent } from './cephfs-list/cephfs-list.component';
15 import { CephfsTabsComponent } from './cephfs-tabs/cephfs-tabs.component';
16
17 @NgModule({
18 imports: [CommonModule, SharedModule, AppRoutingModule, ChartsModule, TreeModule, NgbNavModule],
19 declarations: [
20 CephfsDetailComponent,
21 CephfsClientsComponent,
22 CephfsChartComponent,
23 CephfsListComponent,
24 CephfsTabsComponent,
25 CephfsDirectoriesComponent
26 ]
27 })
28 export class CephfsModule {}