<@U5V8XNGCX> this version works: ``` val server...
# http4k
d
@joshr this version works:
Copy code
val serverRoutes: ContractRoute = ("/add" / <http://Path.int|Path.int>().of("value1") meta {
        summary = "add"
        description = "Adds 2 numbers together"
        returning("The result" to OK)
    } bindContract GET
        to { i: Int -> { Response(OK) } }
        )