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/MyAnimeListPageSync.kt

14 lines
338 B
Kotlin

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