I'm using Ktor resources and whenever I try to set...
# ktor
t
I'm using Ktor resources and whenever I try to setup a route using the syntax
get<Example> {}
I get a function overload error because Ktor automatically imports
io.ktor.server.routing.*
and
io.ktor.server.resources.*
so I then have to manually go and add
<http://io.ktor.server.resources.post|io.ktor.server.resources.post>
so the error resolves itself. Is there any way to prevent this?