com.gojek.courier.utils.Clock.kt Maven / Gradle / Ivy
package com.gojek.courier.utils
import androidx.annotation.RestrictTo
@RestrictTo(RestrictTo.Scope.LIBRARY)
class Clock {
fun currentTimeMillis(): Long {
return System.currentTimeMillis()
}
fun nanoTime(): Long {
return System.nanoTime()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy