Updated on 2026-08-14

This commit is contained in:
Tangem 2023-11-16 12:25:42 +02:00
parent fe8d2719a3
commit e40ce860a4
12 changed files with 106 additions and 13 deletions

View file

@ -0,0 +1,10 @@
package com.tangem.lib.auth
interface ExpressAuthProvider {
fun getApiKey(): String
fun getUserId(): String
fun getSessionId(): String
}

View file

@ -0,0 +1,6 @@
package com.tangem.lib.auth.sessionId
interface ExpressSessionIdGenerator {
fun generateNewSessionId()
}