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 Enbld::Command::Usage;

use strict;
use warnings;

use 5.010001;

use parent qw/Enbld::Command/;

sub do {
    say "try 'enblder help' for more information.";
}

1;