aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/common/compat/Implicits.scala
blob: 860989b6933f7f4888664d348c16c366cb236881 (plain) (blame)
1
2
3
4
5
6
7
package xyz.driver.common.compat

object Implicits {

  implicit def toEitherOps[A, B](self: Either[A, B]): EitherOps[A, B] = new EitherOps(self)

}