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
2020-06-17 22:46:29 +00:00

11 lines
228 B
Kotlin

package mdnet.base
import java.time.Duration
object Constants {
const val CLIENT_BUILD = 8
const val CLIENT_VERSION = "1.0"
const val WEBUI_VERSION = "0.0.4"
val MAX_AGE_CACHE: Duration = Duration.ofDays(14)
}