crystelf-core/src/core/system/system.module.ts
2025-07-25 16:03:12 +08:00

11 lines
267 B
TypeScript

import { Module } from '@nestjs/common';
import { SystemService } from './system.service';
import { PathModule } from '../path/path.module';
@Module({
imports: [PathModule],
providers: [SystemService],
exports: [SystemService],
})
export class SystemModule {}