11 lines
220 B
Kotlin
11 lines
220 B
Kotlin
package be.vandewalleh.features
|
|
|
|
import io.ktor.application.*
|
|
import io.ktor.features.*
|
|
import io.ktor.jackson.*
|
|
|
|
fun Application.contentNegotiationFeature() {
|
|
install(ContentNegotiation) {
|
|
jackson {}
|
|
}
|
|
} |