From d99fe7fb2c3fe992b55fc4cf7048bfdee9f11221 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Tue, 8 Mar 2011 13:36:19 +0100 Subject: Add logger stub --- lib/Fripost/Logger.pm | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 lib/Fripost/Logger.pm (limited to 'lib') 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<< >> + +=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 + -- cgit v1.2.3