Updated on 2026-08-14

This commit is contained in:
Tangem 2023-11-07 12:38:27 +02:00
parent be70d69092
commit 1e0c7e02ff
6 changed files with 87 additions and 4 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
interface ExpressSessionIdGenerator {
fun generateNewSessionId()
}