From 3e3f8029e67bcaa0aea5fd5993e83f137e319b3b Mon Sep 17 00:00:00 2001 From: Jerry Date: Thu, 24 Jul 2025 14:24:40 +0800 Subject: [PATCH] =?UTF-8?q?nest=E5=88=9D=E5=A7=8B=E5=8C=96=20feat:?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=A8=A1=E5=9D=97=20feat:=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/path/path.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }