spider/perl/DXConnect.pm
Dirk Koopman b9dffeff72 Prepare for git repository
remove all the versioning from the code and introduce Version.pm
fix some niffnaffs
2007-06-14 12:08:12 +01:00

32 lines
245 B
Perl

#
# module to manage outgoing connections and things
#
# Copyright (c) 1998 - Dirk Koopman G1TLH
#
# $Id$
#
package DXConnect;
@ISA = qw(DXChannel);
use DXUtil;
use DXM;
use DXDebug;
use strict;
sub init
{
}
sub process
{
}
1;
__END__