From 41fce81a97747ff3f198eb212c92f840ae6fb812 Mon Sep 17 00:00:00 2001 From: tone <3341154833@qq.com> Date: Wed, 7 May 2025 00:01:49 +0800 Subject: [PATCH] =?UTF-8?q?user=E6=A8=A1=E5=9D=97=E5=AF=BC=E5=87=BAService?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tone-page-server/src/user/user.module.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tone-page-server/src/user/user.module.ts b/tone-page-server/src/user/user.module.ts index f1fc5ed..ec70574 100644 --- a/tone-page-server/src/user/user.module.ts +++ b/tone-page-server/src/user/user.module.ts @@ -7,6 +7,7 @@ import { UserService } from './user.service'; @Module({ imports: [TypeOrmModule.forFeature([User])], controllers: [UserController], - providers: [UserService] + providers: [UserService], + exports: [UserService], }) -export class UserModule {} +export class UserModule { }