summaryrefslogtreecommitdiffstats
path: root/lib/KiokuDB/Serializer/Storable/Crypt.pm
blob: 62da7252cc2641e4ac64eda79ba612ca77ea5548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package KiokuDB::Serializer::Storable::Crypt;
use Moose;
use namespace::autoclean;

# ABSTRACT: encrypted Storable serializer

=head1 SYNOPSIS

=head1 DESCRIPTION

=cut

extends 'KiokuDB::Serializer::Storable';
with 'KiokuDB::Serializer::Crypt';

__PACKAGE__->meta->make_immutable;

1;