summaryrefslogtreecommitdiff
path: root/lib/DeWeave/Crypto/KeyBundle.pm
blob: aea89ecd69daa024dd6a92c19b0c3091a2843b65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package DeWeave::Crypto::KeyBundle; 
use Moose;
use namespace::autoclean;
use MooseX::Types::Moose qw(HashRef Str);
use MooseX::Types::Structured qw(Tuple);
 
has _keys => (
    isa => Str,
    init_arg => undef,
    lazy_build => 1,
);
 
 
 
1;