package PciIds::Config;
use strict;
use warnings;
-use Startup;
+use PciIds::Startup;
use base 'Exporter';
our @EXPORT = qw(&checkConf &defConf %config &confList);
--- /dev/null
+package PciIds::Startup;
+use strict;
+use warnings;
+use base 'Exporter';
+
+#Where are data?
+our $directory = '/home/vorner/prog/pciids/';
+our @EXPORT=qw($directory);
+
+#Where are the modules?
+use lib ( '/home/vorner/prog/pciids/' );
+
+1;
use PciIds::Config;
use Digest::MD5 qw(md5_base64 md5_hex);#TODO Some better algorithm?
use HTML::Entities;
-use Startup;
+use PciIds::Startup;
use PciIds::Log;
use Apache2::Connection;
+++ /dev/null
-package Startup;
-use strict;
-use warnings;
-use base 'Exporter';
-
-#Where are data?
-our $directory = '/home/vorner/prog/pciids/';
-our @EXPORT=qw($directory);
-
-#Where are the modules?
-use lib ( '/home/vorner/prog/pciids/' );
-
-1;