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

use strict;
has config => (
is => 'ro',
default => method {
{
'App::Embra::Plugin::Test' => {
greeting => 'howdy',
},
};
},
);
1;