com.fireflysource.example.HttpServerRouterDemo.kt Maven / Gradle / Ivy
package com.fireflysource.example
import com.fireflysource.`$`
fun main() {
`$`.httpServer()
.router().get("/").handler { ctx -> ctx.write("Hello world! ").next() }
.router().get("/").handler { ctx -> ctx.end("The router demo.") }
.listen("localhost", 8090)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy