Help for this page

Select Code to Download


  1. or download this
    use Base::Module;
    Base::Module::Config->import(qw( %conf ));
    
  2. or download this
    package Base::Module;
    
    ...
    
      *conf = \%{config_module . '::conf'};
    }
    
  3. or download this
    use Base::Module qw( %conf );
    
  4. or download this
    sub base_module { "Base::Module" }
    
    ...
      eval 'require ' . base_module;
      base_module()->import(qw( %conf ));
    }