(ctx context.Context, txFn func(ctx context.Context) error, opts ...interface{})
| 42 | |
| 43 | type Transactor interface { |
| 44 | WithTx(ctx context.Context, txFn func(ctx context.Context) error, opts ...interface{}) error |
| 45 | } |
| 46 | |
| 47 | // AccessorTx is used to access the database. It combines Accessor interface |
no outgoing calls