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

Router::Simple::Declare - declarative interface for Router::Simple

SYNOPSIS

use Router::Simple::Declare;

my $router = router {
    connect '/{controller}/{action}/{id}';

    submapper('/account', {controller => 'Account'})
        ->connect('/login', {action => 'login'})
        ->connect('/logout', {action => 'logout'});
};
$router->match('/entry/show/3');

DESCRIPTION

Easy way to declare router object.

USAGE

look the SYNOPSIS.see Router::Simple for more details.

FUNCTIONS

router
connect
submapper

SEE ALSO

Router::Simple