The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use TinyURL::DB;

register(
    DB => sub {
        my $c = shift;
        my $config = $c->get('config');
        TinyURL::DB->new(@{$config->{datasource}});
    }
);