hmm, I got a little further: ``` fun <F> run...
# arrow
b
hmm, I got a little further:
Copy code
fun <F> runner(connection: Connection, FX: Fx<F>, BF: Bracket<F, Throwable>): JDBCOps<F> =
        object: JDBCOps<F>, Fx<F> by FX, Bracket<F, Throwable> by BF {
            override val connection = connection
        }
Unfortunately, now I don't have an Fx<F> instance:
runner(connection, ???, IO.bracket())