package My::Constants; use strict; use warnings; use Exporter; our (@ISA, @EXPORT); @ISA = qw /Exporter/; @EXPORT = qw /$CONNECT $DB $KEYFILES @FILES/; our $CONNECT = 'DBI:mysql'; our $DB = 'SUN'; our $KEYFILE = 'key.csv'; our @FILES = '<*.csv>'; 1;