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
226 B
Kotlin

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