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.

11 lines
231 B
Kotlin

package moe.odango.index.cli
import com.github.ajalt.clikt.core.CliktCommand
import moe.odango.index.es.Indexer
class ElasticIndex : CliktCommand(name = "elastic:index") {
override fun run() {
Indexer().run()
}
}