diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-03-17 22:47:35 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-03-17 22:47:35 -0700 |
commit | 654a7353e1c46878dd84bfef0e987f0205e03fde (patch) | |
tree | 1d50d4ae0fad99f874fc85673907c9beb8d133fb /usr/src/libpiny/Piny.pm | |
parent | 225cfa610fc07cb143f5a86c06f87829f9e240d2 (diff) | |
download | piny-code-654a7353e1c46878dd84bfef0e987f0205e03fde.tar.gz piny-code-654a7353e1c46878dd84bfef0e987f0205e03fde.zip |
Initial version of the libpiny stuff.
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; |