diff options
Diffstat (limited to 'usr/src/libpiny/Piny.pm')
-rw-r--r-- | usr/src/libpiny/Piny.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/usr/src/libpiny/Piny.pm b/usr/src/libpiny/Piny.pm new file mode 100644 index 0000000..d4e3b27 --- /dev/null +++ b/usr/src/libpiny/Piny.pm @@ -0,0 +1,11 @@ +# This very pointedly does not have a package line. +# That way, you can "use Piny" and import all the Piny packages into your namespace in one fell swoop. +# Of course, you don't get to pass arguments to their import functions anymore. + +use Piny::Email; +use Piny::Environment; +use Piny::Group; +use Piny::Repo; +use Piny::User; + +1; |