summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/ceph.module.ts
blob: 47772304b505ffa50bbbd0072c076e9bdb4fa994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';

import { SharedModule } from '../shared/shared.module';
import { CephfsModule } from './cephfs/cephfs.module';
import { ClusterModule } from './cluster/cluster.module';
import { DashboardModule } from './dashboard/dashboard.module';
import { NfsModule } from './nfs/nfs.module';
import { PerformanceCounterModule } from './performance-counter/performance-counter.module';

@NgModule({
  imports: [
    CommonModule,
    ClusterModule,
    DashboardModule,
    PerformanceCounterModule,
    CephfsModule,
    NfsModule,
    SharedModule
  ],
  declarations: []
})
export class CephModule {}