mirror of
https://github.com/crystelf/crystelf-core.git
synced 2025-10-14 05:19:19 +00:00
11 lines
267 B
TypeScript
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 {}
|