what happened to `ktor.locations`? why does get&lt...
# ktor
c
what happened to
ktor.locations
? why does get<Object> work, but not post<Object> not work?
ł
you imported bad package 🙂
Copy code
import io.ktor.locations.*
import <http://io.ktor.locations.post|io.ktor.locations.post>
c
i ended up reverting to ktor version: 1.5.4, has this been fixed in ktor version: 1.6+?
ł
I use 1.6.1 and I don't have any problems
c
ok, including the other import worked. Thanks! It’s kind of silly because the * is supposed to mean all the things from
import io.ktor.locations.*
but I won’t complain.
👍 1