aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorStefan Kangas <skangas@skangas.se>2011-03-08 13:36:19 +0100
committerStefan Kangas <skangas@skangas.se>2011-03-08 13:36:19 +0100
commitd99fe7fb2c3fe992b55fc4cf7048bfdee9f11221 (patch)
tree300aa69e3acef04143e19ed5d30eaea540cc45a8 /lib
parentccb978ba62be4e9eecfaa946c873750a689b64b3 (diff)
Add logger stub
Diffstat (limited to 'lib')
-rwxr-xr-xlib/Fripost/Logger.pm41
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
+