Dave Cross: Still Munging Data With Perl: Online event - Mar 17 Learn more

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