2024-02-28 17:02:46 +08:00
|
|
|
import { Module } from '@nestjs/common';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
2024-02-28 17:02:46 +08:00
|
|
|
import { RouterModule } from '@nestjs/core';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
2024-02-28 17:02:46 +08:00
|
|
|
import { UserModule } from '../user/user.module';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
2024-02-28 17:02:46 +08:00
|
|
|
import { NetDiskManageController } from './manager/manage.controller';
|
|
|
|
import { NetDiskOverviewController } from './overview/overview.controller';
|
|
|
|
import { NetDiskOverviewService } from './overview/overview.service';
|
2024-03-08 16:24:29 +08:00
|
|
|
import { MinioService } from './minio/minio.service';
|
|
|
|
import { NetDiskManageService } from './manager/manage.service';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
@Module({
|
2024-02-28 17:02:46 +08:00
|
|
|
imports: [
|
|
|
|
UserModule,
|
|
|
|
RouterModule.register([
|
|
|
|
{
|
|
|
|
path: 'netdisk',
|
2024-02-29 09:29:03 +08:00
|
|
|
module: NetdiskModule
|
|
|
|
}
|
|
|
|
])
|
2024-02-28 17:02:46 +08:00
|
|
|
],
|
2024-02-28 08:32:35 +08:00
|
|
|
controllers: [NetDiskManageController, NetDiskOverviewController],
|
2024-03-08 16:24:29 +08:00
|
|
|
providers: [NetDiskManageService, NetDiskOverviewService, MinioService]
|
2024-02-28 08:32:35 +08:00
|
|
|
})
|
|
|
|
export class NetdiskModule {}
|