summaryrefslogtreecommitdiff
path: root/lib/PerlDaemon/RunModule.pm
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2011-05-13 14:19:38 +0000
committerPaul Buetow <paul@buetow.org>2011-05-13 14:19:38 +0000
commit120ea2c4fba07d81e17d1d432c1543f5d3ca2f25 (patch)
tree62d17221cb565b36c22daaf77a7d97be9cd41130 /lib/PerlDaemon/RunModule.pm
parentb5cb1964019b06c18054f01650c5f6662c73a033 (diff)
s/RunModule/RunModules/g
Diffstat (limited to 'lib/PerlDaemon/RunModule.pm')
-rw-r--r--lib/PerlDaemon/RunModule.pm17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/PerlDaemon/RunModule.pm b/lib/PerlDaemon/RunModule.pm
deleted file mode 100644
index 4f2c492..0000000
--- a/lib/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;