commonMain.com.plusmobileapps.firebase.auth.util.DateTimeUtil.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auth-jvm Show documentation
Show all versions of auth-jvm Show documentation
A kotlin multiplatform mobile library for authenticating with Firebase for Android, iOS, and JVM
The newest version!
package com.plusmobileapps.firebase.auth.util
import kotlinx.datetime.Clock
import kotlinx.datetime.Instant
internal interface DateTimeUtil {
val now: Instant
}
internal class DateTimeUtilImpl : DateTimeUtil {
override val now: Instant
get() = Clock.System.now()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy