Updated on 2026-08-14

This commit is contained in:
Tangem 2023-11-09 14:42:49 +02:00
parent 26b3c3d576
commit 95f66c8798
18 changed files with 89 additions and 64 deletions

View file

@ -8,7 +8,7 @@ import java.util.UUID
class ExpressAuthProviderImpl(
private val userWalletsStore: UserWalletsStore,
private val configManager: ConfigManager
private val configManager: ConfigManager,
) : ExpressAuthProvider, ExpressSessionIdGenerator {
private var uuid = UUID.randomUUID()

View file

@ -31,7 +31,7 @@ class AuthModule {
): ExpressAuthProvider {
return ExpressAuthProviderImpl(
userWalletsStore = userWalletsStore,
configManager = configManager
configManager = configManager,
)
}
}