<@UB9AX6GEP> ``` val routes = listOf( ...
# http4k
d
@Connor Shearwood
Copy code
val routes = listOf(
            "/foo" bind GET to { Response(OK) }
    )

    val app = routes(
            "/" bind routes(*routes.toTypedArray()),
            "/more" bind static(ResourceLoader.Classpath())
    )

    println(app(Request(GET, "/foo")))