aboutsummaryrefslogtreecommitdiff
path: root/SBO-Lib/lib/SBO/Lib.pm
diff options
context:
space:
mode:
Diffstat (limited to 'SBO-Lib/lib/SBO/Lib.pm')
-rw-r--r--SBO-Lib/lib/SBO/Lib.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm
index ae67b23..edb418a 100644
--- a/SBO-Lib/lib/SBO/Lib.pm
+++ b/SBO-Lib/lib/SBO/Lib.pm
@@ -10,7 +10,7 @@ use strict;
use warnings FATAL => 'all';
package SBO::Lib;
-our $VERSION = '2.7.2';
+our $VERSION = '2.7.4';
=pod
@@ -33,6 +33,8 @@ exporting all of their exports.
=over
+=item L<SBO::Lib::Cryptography>
+
=item L<SBO::Lib::Util>
=item L<SBO::Lib::Info>
@@ -53,6 +55,7 @@ exporting all of their exports.
=cut
+use SBO::Lib::Cryptography qw/ :all /;
use SBO::Lib::Util qw/ :all /;
use SBO::Lib::Info qw/ :all /;
use SBO::Lib::Repo qw/ :all /;
@@ -65,6 +68,7 @@ use SBO::Lib::Download qw/ :all /;
use Exporter 'import';
our @EXPORT_OK = (
+ @SBO::Lib::Cryptography::EXPORT_OK,
@SBO::Lib::Util::EXPORT_OK,
@SBO::Lib::Info::EXPORT_OK,
@SBO::Lib::Repo::EXPORT_OK,
@@ -77,6 +81,7 @@ our @EXPORT_OK = (
our %EXPORT_TAGS = (
all => \@EXPORT_OK,
+ cryptography => \@SBO::Lib::Cryptography::EXPORT_OK,
util => \@SBO::Lib::Util::EXPORT_OK,
info => \@SBO::Lib::Info::EXPORT_OK,
repo => \@SBO::Lib::Repo::EXPORT_OK,