Sven Simikin
Sven Simikin
Currently, the test code generation imports `kotlinx.coroutines.experimental.io.*`, required by `ByteReadChannel` for all Ktor versions. From ktor 1.3.0 the API changed and `ByteReadChannel` is now located under `io.ktor.utils.io.* `. As a...
Currently, when no other feature then _ContentNegotiation_ is selected, the generated project is not compilable since it is missing the `io.ktor.features.*` import. This PR adds the required import to the...
Currently, the contents of the files CachingHeadersFeature.kt and AutoHeadResponseFeature.kt are swapped. This PR puts the contents of the feature classes into their intended files.