miha-x64
10/14/2017, 9:50 AMget("/") { route1(call, "") }
get("/{f}/") { route1(call, call.parameters["f"]!!) }
get("/{f}/{s}/") { route2(call, call.parameters["f"]!!, call.parameters["s"]!!) }
get("/{f}/{s}/{t}/") { route3(call, call.parameters["f"]!!, call.parameters["s"]!!, call.parameters["t"]!!) }