The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
{ my $opt = {
         'testdriver' => '',
         'testport' => '',
         'testdb' => 'test',
         'testuser' => '',
         'testdsn' => '',
         'testpassword' => '',
         'testhost' => ''
       };
  sub load_all { return (
      driver   => $opt->{'testdriver'},
      host     => $opt->{'testhost'},
      port     => $opt->{'testport'},
      user     => $opt->{'testuser'},
      password => $opt->{'testpassword'},
      db       => $opt->{'testdb'},
      dsn      => $opt->{'testdsn'},
      ) }
} 1;