mirror of
https://gitlab.com/mangadex-pub/mangadex_at_home.git
synced 2024-01-19 02:48:37 +00:00
10 lines
190 B
Kotlin
10 lines
190 B
Kotlin
package mdnet.base
|
|
|
|
import java.time.Duration
|
|
|
|
object Constants {
|
|
const val CLIENT_BUILD = 6
|
|
const val CLIENT_VERSION = "1.0"
|
|
val MAX_AGE_CACHE: Duration = Duration.ofDays(14)
|
|
}
|