our $C = Config::Loader->new('/path/to/config') #### use Config::Loader ('My::Config' => '/path/to/config'); #### use My::Config; $config = C(); $db = $config->{global}{hosts}{db}{2}; or $db = C('global.hosts.db.2');
## use Config::Loader ('My::Config' => '/path/to/config'); ##
## use My::Config; $config = C(); $db = $config->{global}{hosts}{db}{2}; or $db = C('global.hosts.db.2');