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