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() } }