1
0
Fork 1
mirror of https://gitlab.com/mangadex-pub/mangadex_at_home.git synced 2024-01-19 02:48:37 +00:00
mangadex_at_home/src/main/kotlin/mdnet/base/Constants.kt

10 lines
190 B
Kotlin
Raw Normal View History

2020-06-13 23:19:04 +00:00
package mdnet.base
import java.time.Duration
object Constants {
2020-06-16 23:11:10 +00:00
const val CLIENT_BUILD = 8
2020-06-13 23:19:04 +00:00
const val CLIENT_VERSION = "1.0"
val MAX_AGE_CACHE: Duration = Duration.ofDays(14)
}