The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# ABSTRACT: Represents an App::Spec subcommand
use strict;
our $VERSION = 'v0.15.0'; # VERSION
use Moo;
with('App::Spec::Role::Command');
has summary => ( is => 'ro' );
has subcommand_required => ( is => 'ro' );
sub default_plugins { }
1;
__END__
=pod
=head1 NAME
App::Spec::Subcommand - Represents an App::Spec subcommand
=head1 METHODS
=over 4
=item default_plugins
Returns an empty list
=back
=head1 ATTRIBUTES
=over 4
=item summary, subcommand_required
Items from the specification.
=back
=cut