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

use strict;
sub new {
my ($class, $config, $c) = @_;
my $self = $class->SUPER::new($config, $c);
# $c->load_plugins();
$self;
}
1;