The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Extended::Web::Dispatcher;
use strict;
use warnings;
use Amon2::Web::Dispatcher::RouterSimple;

connect '/'        => 'Root#index';
connect '/die'     => 'Root#die';
connect '/session' => 'Root#session';

1;