hydra/src/lib/Hydra/Config.pm

12 lines
189 B
Perl
Raw Normal View History

2021-07-26 03:43:09 +00:00
package Hydra::Config;
use strict;
use Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(%configGeneralOpts);
my %configGeneralOpts = (-UseApacheInclude => 1, -IncludeAgain => 1);
1;