Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Deftu committed Oct 11, 2024
1 parent bdfceb8 commit f695d7b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package one.devos.nautical.exposeplayers.plugins

import io.ktor.serialization.kotlinx.json.*
import io.ktor.serialization.gson.*
import io.ktor.server.application.*
import io.ktor.server.plugins.contentnegotiation.*
import io.ktor.server.routing.*
import io.ktor.util.reflect.*

fun Application.configureSerialization() {
install(ContentNegotiation) {
gson { }
gson {
setPrettyPrinting()
}
}

// routing {
Expand Down

0 comments on commit f695d7b

Please sign in to comment.