package moe.odango.index.cli import com.github.ajalt.clikt.core.CliktCommand import moe.odango.index.http.Server class HTTPServer : CliktCommand(name = "http:serve") { override fun run() { Server().run() } }