The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# ============================================================================
package Games::Lacuna::Task::Meta::Class::Trait::NoAutomatic;
# ============================================================================

use 5.010;
our $VERSION = $Games::Lacuna::Task::VERSION;

use Moose::Role;

sub no_automatic { 1 }

no Moose::Role;

{
    package Moose::Meta::Class::Custom::Trait::NoAutomatic;
    use strict;
    use warnings;
    sub register_implementation { 'Games::Lacuna::Task::Meta::Class::Trait::NoAutomatic' }
}

1;