cleanup last insert id handling
[dbsrgits/DBIx-Data-Store-old.git] / lib / DBIx / Data / Store / Command / Closure.pm
CommitLineData
de9534fa 1package DBIx::Data::Store::Command::Closure;
2
3use Moose;
4use Method::Signatures::Simple;
5
6has [ 'run', 'against' ] => (is => 'ro', required => 1);
7
8method execute {
9 $self->against->run($self->run);
10}
11
12__PACKAGE__->meta->make_immutable;
13
141;