<@UB9AX6GEP> you need to omit the extra "/": ``` ...
# http4k
d
@Connor Shearwood you need to omit the extra "/":
Copy code
val app = routes(
            routes("/foo" bind GET to { Response(OK) }),
            "/more" bind static(ResourceLoader.Classpath())
    )

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