SauceNaoAPI/src/main/kotlin/com/github/insanusmokrassar/SauceNaoAPI/additional/Utils.kt

12 lines
333 B
Kotlin
Raw Normal View History

2019-05-16 11:04:58 +00:00
package com.github.insanusmokrassar.SauceNaoAPI.additional
2019-12-13 16:45:10 +00:00
import com.soywiz.klock.TimeSpan
2019-05-16 11:04:58 +00:00
typealias AccountType = Int
const val defaultAccountType: AccountType = 1 // "basic"
typealias UserId = Int
2019-12-13 16:45:10 +00:00
val SHORT_TIME_RECALCULATING_MILLIS = TimeSpan(30.0 * 1000)
val LONG_TIME_RECALCULATING_MILLIS = TimeSpan(24.0 * 60 * 60 * 1000)