How to write a default request handler that will t...
# ktor
m
How to write a default request handler that will take the
call.request.path()
and pass it as a template name by calling
call.respond(ThymeleafContent(path))
a
You can use the tailcard path pattern to define a catch-all route where you can pass the request path to the Thymeleaf template.
m
thank you