use different dateformat
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2020-05-21 23:57:15 +02:00
parent 5b8f8cc108
commit e18d428587
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047

View File

@ -22,6 +22,8 @@ fun main(args: Array<String>): Unit = io.ktor.server.netty.EngineMain.main(args)
fun Application.module() { fun Application.module() {
install(ContentNegotiation) { install(ContentNegotiation) {
gson { gson {
setPrettyPrinting()
setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSSSS")
} }
} }