The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package DBIx::Class::Fixtures::DBI;

use strict;
use warnings;

sub do_insert {
  my ($class, $schema, $sub) = @_;

  $schema->txn_do($sub);
}

1;