commonMain.com.paoapps.fifi.auth.AuthApi.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fifi-auth-jvm Show documentation
Show all versions of fifi-auth-jvm Show documentation
Kotlin Multiplatform Mobile framework for optimal code sharing between iOS and Android.
The newest version!
package com.paoapps.fifi.auth
import com.paoapps.fifi.domain.auth.Tokens
interface AuthApi {
suspend fun refresh(refreshToken: String): Tokens
}