summaryrefslogtreecommitdiff
path: root/PerlDaemon/RunModule.pm
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2011-05-13 14:04:43 +0000
committerPaul Buetow <paul@buetow.org>2011-05-13 14:04:43 +0000
commit55fe4f90e7f7b89abebbd53a4a910dc1e4dcd896 (patch)
tree45e361ee42b263c87ead8fd9eb5fdd72409c32d7 /PerlDaemon/RunModule.pm
parent73af1eb840720cf21c420c9a38021f6aa2f41b8f (diff)
directory is now obsolete
Diffstat (limited to 'PerlDaemon/RunModule.pm')
-rw-r--r--PerlDaemon/RunModule.pm17
1 files changed, 0 insertions, 17 deletions
diff --git a/PerlDaemon/RunModule.pm b/PerlDaemon/RunModule.pm
deleted file mode 100644
index 4f2c492..0000000
--- a/PerlDaemon/RunModule.pm
+++ /dev/null
@@ -1,17 +0,0 @@
-package PerlDaemon::RunModule;
-
-sub new ($$$) {
- my ($class, $conf) = @_;
-
- return bless { conf => $conf }, $class;
-}
-
-sub do ($) {
- my $self = shift;
- my $conf = $self->{conf};
- my $logger = $conf->{logger};
-
- $logger->logmsg('Test');
-}
-
-1;