I'm getting an Unresolved reference: JsonFeature e...
# ktor
c
I'm getting an Unresolved reference: JsonFeature error with this code:
Copy code
val client = HttpClient(CIO) {
            install(JsonFeature)
        }
(I have ktor-server-core, ktor-server-netty, ktor-client-cio, and ktor-client-json in my pom.xml.) Do I need a special import for JsonFeature?