dave
02/24/2018, 9:25 PMval 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) } }
)