The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
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;