com.deque.networking.models.auth.AuthSource.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-data Show documentation
Show all versions of axe-devtools-android-data Show documentation
The Axe Devtools Android Data Library
package com.deque.networking.models.auth
interface AuthSource {
companion object {
const val API_KEY_HEADER = "X-Api-Key"
const val ACCESS_TOKEN_HEADER = "authorization"
}
fun getToken(): String
fun getAuthHeader(): String
}