rocketraman
08/16/2017, 5:54 PM// outbound JSON interceptor, ktor does not support inbound json interception (yet)
intercept(ApplicationCallPipeline.Infrastructure) { call ->
call.transform.register<Something> { value ->
TextContent(objectMapper.writeValueAsString(value), ContentType.Application.Json)
}
}