added directory command + dummy read, send and reply
[spider.git] / perl / DXCron.pm
1 #
2 # module to timed tasks
3 #
4 # Copyright (c) 1998 - Dirk Koopman G1TLH
5 #
6 # $Id$
7 #
8
9 package DXCron;
10
11 use DXUtil;
12 use DXM;
13 use DXDebug;
14 use Carp;
15
16 use strict;
17
18 # cron initialisation / reading in cronjobs
19 sub init
20 {
21
22 }
23
24 # process the cronjobs
25 sub process
26 {
27
28 }
29
30 1;
31 __END__