mirror of
https://github.com/crystelf/crystelf-core.git
synced 2025-10-14 05:19:19 +00:00
9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { PathService } from './path.service';
|
|
|
|
@Module({
|
|
providers: [PathService],
|
|
exports: [PathService],
|
|
})
|
|
export class PathModule {}
|