diff --git a/src/core/path/path.service.ts b/src/core/path/path.service.ts index bfdc2ee..66efe44 100644 --- a/src/core/path/path.service.ts +++ b/src/core/path/path.service.ts @@ -1,7 +1,7 @@ import { Injectable } from '@nestjs/common'; import * as path from 'path'; import * as fs from 'fs'; -import { ConfigService } from '../../config/config.service'; +import { AppConfigService } from '../../config/config.service'; import { Logger } from '@nestjs/common'; @Injectable() @@ -9,7 +9,7 @@ export class PathService { private readonly baseDir: string; private readonly logger = new Logger(PathService.name); - constructor(private readonly configService: ConfigService) { + constructor(private readonly configService: AppConfigService) { this.baseDir = path.join(__dirname, '../../..'); this.initializePaths(); }