summaryrefslogtreecommitdiff
path: root/lib/PerlDaemon/RunModules.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/RunModules.pm
parentb5cb1964019b06c18054f01650c5f6662c73a033 (diff)
s/RunModule/RunModules/g
Diffstat (limited to 'lib/PerlDaemon/RunModules.pm')
-rw-r--r--lib/PerlDaemon/RunModules.pm17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/PerlDaemon/RunModules.pm b/lib/PerlDaemon/RunModules.pm
new file mode 100644
index 0000000..e806ca1
--- /dev/null
+++ b/lib/PerlDaemon/RunModules.pm
@@ -0,0 +1,17 @@
+package PerlDaemon::RunModules;
+
+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;