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.
index/src/main/kotlin/moe/odango/index/cli/MyAnimeListListingSync.kt

14 lines
351 B
Kotlin

package moe.odango.index.cli
import com.github.ajalt.clikt.core.CliktCommand
import kotlinx.coroutines.runBlocking
import moe.odango.index.sync.MyAnimeListListingSync
class MyAnimeListListingSync : CliktCommand(name = "mal:sync-listing") {
override fun run() {
runBlocking {
MyAnimeListListingSync().run()
}
}
}