core/features/auth/common/src/commonMain/kotlin/dev/inmo/postssystem/features/auth/common/Constants.kt

9 lines
240 B
Kotlin

package dev.inmo.postssystem.features.auth.common
const val tokenSessionKey = "token"
const val authRootPathPart = "auth"
const val authAuthPathPart = "auth"
const val authRefreshPathPart = "refresh"
const val authGetMePathPart = "getMe"