From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

package Foo;
use Moose;
extends 'Catalyst';
our $VERSION = '0.01';
__PACKAGE__->config(
name => 'Foo',
disable_component_resolution_regex_fallback => 1,
);
__PACKAGE__->setup();
1;