mirror of
https://github.com/crystelf/crystelf-core.git
synced 2025-12-05 10:31:56 +00:00
14 lines
511 B
TypeScript
14 lines
511 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { SystemWebController } from './systemWeb.controller';
|
|
import { SystemWebService } from './systemWeb.service';
|
|
import { PathModule } from '../../core/path/path.module';
|
|
import { SystemModule } from '../../core/system/system.module';
|
|
import { ToolsModule } from '../../core/tools/tools.module';
|
|
|
|
@Module({
|
|
imports: [SystemModule, PathModule, ToolsModule],
|
|
controllers: [SystemWebController],
|
|
providers: [SystemWebService],
|
|
})
|
|
export class SystemWebModule {}
|