typo.dsl.Path.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
sealed trait Path
object Path {
implicit val ordering: Ordering[Path] = {
case (LeftInJoin, RightInJoin) => -1
case (RightInJoin, LeftInJoin) => 1
case _ => 0
}
case object LeftInJoin extends Path
case object RightInJoin extends Path
}