The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package App::Services::DB::DB_Conn::Role;
{
  $App::Services::DB::DB_Conn::Role::VERSION = '0.001';
}  #-- Log service interface

use Moo::Role;

has db_conn_svc => (
 is => 'rw',
 isa => sub { ref eq 'App::Services::Service::DB_Conn' },
 handles => ['dbh'],
 required => 1,
);

no Moo::Role;

1;

__END__

=pod

=head1 NAME

App::Services::DB::DB_Conn::Role

=head1 VERSION

version 0.001

=head1 AUTHOR

Sean Blanton <sean@blanton.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Sean Blanton.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut