tofu.lift.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tofu-core_2.13 Show documentation
Show all versions of tofu-core_2.13 Show documentation
Opinionated Set of tool for functional programming in scala
package tofu
import cats.effect.IO
import scala.concurrent.Future
package object lift {
type UnliftIO[F[_]] = Unlift[IO, F]
type UnsafeExecFuture[F[_]] = Unlift[Future, F]
}