]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/ceph.module.ts
import 15.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / ceph.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3
4 import { SharedModule } from '../shared/shared.module';
5 import { CephfsModule } from './cephfs/cephfs.module';
6 import { ClusterModule } from './cluster/cluster.module';
7 import { DashboardModule } from './dashboard/dashboard.module';
8 import { NfsModule } from './nfs/nfs.module';
9 import { PerformanceCounterModule } from './performance-counter/performance-counter.module';
10
11 @NgModule({
12 imports: [
13 CommonModule,
14 ClusterModule,
15 DashboardModule,
16 PerformanceCounterModule,
17 CephfsModule,
18 NfsModule,
19 SharedModule
20 ],
21 declarations: []
22 })
23 export class CephModule {}