initial basic collection test
[dbsrgits/DBIx-Data-Store-old.git] / lib / DBIx / Data / Store / Command / Stream.pm
1 package DBIx::Data::Store::Command::Stream;
2
3 use Moose;
4 use Method::Signatures::Simple;
5 use DBIx::Data::Stream::STH;
6
7 method execute {
8   my $sth = $self->_new_active_sth;
9   DBIx::Data::Stream::STH->new(
10     sth => $sth
11   );
12 }
13
14 with 'DBIx::Data::Store::Command';
15
16 __PACKAGE__->meta->make_immutable;
17
18 1;