All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.freya02.botcommands.internal.commands.CooldownStrategy.kt Maven / Gradle / Ivy

package com.freya02.botcommands.internal.commands

import com.freya02.botcommands.api.commands.CooldownScope
import java.util.concurrent.TimeUnit

class CooldownStrategy(cooldown: Long, unit: TimeUnit, val scope: CooldownScope) {
    val cooldownMillis: Long = unit.toMillis(cooldown)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy