doobie.h2.package.scala Maven / Gradle / Ivy
The newest version!
// Copyright (c) 2013-2020 Rob Norris and Contributors
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT
package doobie
import org.h2.jdbcx.JdbcConnectionPool
package object h2 {
type H2Transactor[M[_]] = Transactor.Aux[M, JdbcConnectionPool]
object implicits
extends Instances
with syntax.ToH2TransactorOps
with H2JavaTimeMetaInstances
}