issue # 이메일 인증 코드 발송 로직 구현

This commit is contained in:
geonhee-min
2025-11-21 16:21:07 +09:00
parent 0170421d16
commit 6cd0361375
13 changed files with 118 additions and 6 deletions

View File

@@ -5,6 +5,7 @@ import { AccountService } from "./account.service";
@Module({
controllers: [AccountController],
providers: [AccountService, AccountRepo]
providers: [AccountService, AccountRepo],
exports: [AccountService, AccountRepo]
})
export class AccountModule {}