What is the difference between Application.routing...
# ktor
m
What is the difference between Application.routing(), and Route.routing()
a
Can you please point to the source code of the
Route.routing
method?
one has a
route {}
the other has
routing {}
Not sure the intent
a
The
routing
installs the
Routing
plugin and creates a root route. The
route
method creates and configures a child route. For more information please read the documentation.
👍🏾 1
m
thank you