feat: wallet private key export API with password verification
All checks were successful
Server CI/CD / lint-and-build (push) Successful in 39s
Server CI/CD / deploy (push) Successful in 52s

This commit is contained in:
2026-03-23 10:52:27 +09:00
parent 10a3f0156b
commit 0cd0d2a402
5 changed files with 75 additions and 8 deletions

View File

@@ -93,6 +93,7 @@ func main() {
_, err := chainSvc.CreateWallet(userID)
return err
})
chainSvc.SetPasswordVerifier(authSvc.VerifyPassword)
playerRepo := player.NewRepository(db)
playerSvc := player.NewService(playerRepo)