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

router {
    connect '/' => { controller => 'Root', action => 'index' };
    connect '/add' => { controller => 'Root', action => 'add', };
    connect '/:id' => { controller => 'Root', action => 'go' };
};