The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Amon2::Web::Dispatcher::RouterSimple - Router::Simple binding for Amon2

SYNOPSIS

    package MyApp::Web::Dispatcher;
    use Amon2::Web::Dispatcher::RouterSimple;
    connect '/'           => 'Root#index';
    connect '/my/'        => 'My#index';
    connect '/my/:action' => 'My';
    1;

DESCRIPTION

Router::Simple binding for Amon2.

AUTHOR

Tokuhiro Matsuno

SEE ALSO

Router::Simple