Guest User

Untitled

a guest
Jul 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package Hailo::Base::Storage::SQL;
  2. use Moose;
  3. use MooseX::Types::Moose qw<HashRef>;
  4.  
  5. has _dbh => (
  6. isa => 'DBI::db',
  7. is => 'ro',
  8. lazy_build => 1,
  9. );
  10.  
  11. has _sth => (
  12. isa => HashRef,
  13. is => 'ro',
  14. lazy_build => 1,
  15. );
  16.  
  17. __PACKAGE__->meta->make_immutable;
Add Comment
Please, Sign In to add comment