summaryrefslogtreecommitdiff
path: root/lib/DeWeave/Crypto/KeyBundle.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DeWeave/Crypto/KeyBundle.pm')
-rw-r--r--lib/DeWeave/Crypto/KeyBundle.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/DeWeave/Crypto/KeyBundle.pm b/lib/DeWeave/Crypto/KeyBundle.pm
new file mode 100644
index 0000000..aea89ec
--- /dev/null
+++ b/lib/DeWeave/Crypto/KeyBundle.pm
@@ -0,0 +1,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;