diff options
-rwxr-xr-x | lib/Fripost/Logger.pm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/Fripost/Logger.pm b/lib/Fripost/Logger.pm new file mode 100755 index 0000000..dd2aaf0 --- /dev/null +++ b/lib/Fripost/Logger.pm @@ -0,0 +1,41 @@ +#!/usr/bin/perl + +use 5.010_000; +use warnings; +use strict; + +=head1 NAME + +Logger.pm - + +=cut + +our $VERSION = '0.01'; + +use Moose; +use namespace::autoclean; + +sub log_adduser { + +} + +no Moose; +__PACKAGE__->meta->make_immutable; + +=head1 AUTHOR + +Stefan Kangas C<< <skangas at skangas.se> >> + +=head1 COPYRIGHT + +Copyright 2010 Stefan Kangas. + +=head1 LICENSE + +This program is free software; you can redistribute it and/or modify it +under the same terms as perl itself. + +=cut + +1; # End of Logger.pm + |