package transaction import "context" type Transaction interface { Transaction(context.Context, func(ctx context.Context) error) error }