org.http4s.json4s.jackson.Json4sJacksonInstances.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4s-json4s-jackson_2.10 Show documentation
Show all versions of http4s-json4s-jackson_2.10 Show documentation
Provides json4s-jackson codecs for http4s
package org.http4s
package json4s
package jackson
import org.json4s.JsonAST.JValue
import org.json4s.jackson.JsonMethods
trait Json4sJacksonInstances extends Json4sInstances[JValue] {
override protected def jsonMethods: org.json4s.JsonMethods[JValue] = JsonMethods
}