cataquack/cataquackJsonDir/src/main/scala/tf/bug/cataquack/jsondir/implicits.scala

11 lines
230 B
Scala

package tf.bug.cataquack.jsondir
import io.circe.{Decoder, Json}
import io.circe.syntax._
import tf.bug.cataquack.Read
object implicits {
implicit def readDecoder[T: Decoder]: Read[Json, T] = (i: Json) => i.as[T].right.get
}