Yes, I search for them in a database. ``` get("/")...
# ktor
m
Yes, I search for them in a database.
Copy code
get("/") { 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"]!!) }