org.http4s.play.PlayEntityDecoder.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4s-play-json_2.11 Show documentation
Show all versions of http4s-play-json_2.11 Show documentation
Provides Play json codecs for http4s
The newest version!
package org.http4s.play
import cats.effect.Sync
import org.http4s.EntityDecoder
import play.api.libs.json.Reads
/**
* Derive [[EntityDecoder]] if implicit [[Reads]] is in the scope without need to explicitly call `jsonOf`
*/
trait PlayEntityDecoder {
implicit def playEntityDecoder[F[_]: Sync, A: Reads]: EntityDecoder[F, A] = jsonOf[F, A]
}
object PlayEntityDecoder extends PlayEntityDecoder
© 2015 - 2025 Weber Informatics LLC | Privacy Policy