3
0
2022-11-14 09:26:39 +01:00

10 lines
149 B
Go

package store
import (
"context"
)
func Tx(ctx context.Context, s Storer, fn func(context.Context, Storer) error) error {
return s.Tx(ctx, fn)
}