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 Ark::Controller;
use Mouse;
extends 'Path::AttrRouter::Controller';
no Mouse;

sub ACTION {
    my ($self, $action, $context, @args) = @_;
    $context->execute( $self, $action->name, @args );
}

__PACKAGE__->meta->make_immutable;