You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
175 B
Kotlin

package moe.odango.index.sync
import java.util.concurrent.TimeUnit
abstract class ScheduledSync(val amount: Long, val timeUnit: TimeUnit) {
abstract suspend fun run()
}