The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Qudo::Hook;
use strict;
use warnings;

sub load {
    warn 'this method is abstract';
}

sub unload {
    warn 'this method is abstract';
}

1;