Chuong
02/24/2025, 1:10 AMktor
rest API server, GET
/api/v1/myroute/CompTIE
matches the route I've created, but GET
/api/v1/myroute/CompTIA
does not.
The route is defined as
fun Route.myRoutes() {
route("/myroute") {
get("/{name}") {
...
}
}
}
Why am I getting this error?Daniel Pitts
02/24/2025, 3:50 AM