summaryrefslogtreecommitdiff
path: root/DaemonLogic.pm
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2011-03-17 08:00:25 +0000
committerPaul Buetow <paul@buetow.org>2011-03-17 08:00:25 +0000
commit820ebd0664b2af1e6fe8c2be41edba44bb1c5f77 (patch)
treeeca1843b175aabc51f5c00d26a7ec36000ae6e65 /DaemonLogic.pm
parent405b32d3ddaa8c62ee5b3ece0b4b1b432f26ad6c (diff)
renamed DaemonLogic into RunModule
Diffstat (limited to 'DaemonLogic.pm')
-rw-r--r--DaemonLogic.pm17
1 files changed, 0 insertions, 17 deletions
diff --git a/DaemonLogic.pm b/DaemonLogic.pm
deleted file mode 100644
index 49583ed..0000000
--- a/DaemonLogic.pm
+++ /dev/null
@@ -1,17 +0,0 @@
-package DaemonLogic;
-
-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;