The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# -------------------- this does NOT work --------------------
package # hide from PAUSE indexer
 MUser;
        use lib "xt/";
        use parent 'DbUser';
        use parent 'Class::Accessor::Fast'; # NEEDED!?
        use Moose;
        has hotstuff => (is => 'rw', isa => "Str");
        __PACKAGE__->meta->make_immutable(inline_constructor => 0);

1;