14 lines
343 B
Kotlin
14 lines
343 B
Kotlin
package be.vandewalleh.features
|
|
|
|
import com.fasterxml.jackson.databind.SerializationFeature
|
|
import io.ktor.application.*
|
|
import io.ktor.features.*
|
|
import io.ktor.jackson.*
|
|
|
|
fun Application.contentNegotiationFeature() {
|
|
install(ContentNegotiation) {
|
|
jackson {
|
|
enable(SerializationFeature.INDENT_OUTPUT)
|
|
}
|
|
}
|
|
} |