I am trying to learn Ktor, when responding to a GET request, I found that the trailing slash is treated as two routes, for example:
/greet?name=john
/greet/?name=john
Is it possible to define one route for the above two URLs, which is to handle trailing slash automatically?