typo.dsl.pagination.AbstractJsonCodec.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of typo-dsl-zio-jdbc_3 Show documentation
Show all versions of typo-dsl-zio-jdbc_3 Show documentation
Typed postgres boilerplate generation
The newest version!
package typo.dsl.pagination
/** abstract over json libraries */
class AbstractJsonCodec[T, E](
val encode: T => E,
val decode: E => Either[String, T]
)