The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Mojo::Commands - Commands

SYNOPSIS

use Mojo::Commands;

my $commands = Mojo::Commands->new;
$commands->run(@ARGV);

DESCRIPTION

Mojo::Commands is the interactive command interface to the Mojo framework.

ATTRIBUTES

Mojo::Commands inherits all attributes from Mojo::Command and implements the following new ones.

message

my $message  = $commands->message;
my $commands = $commands->message('Hello World!');

namespaces

my $namespaces = $commands->namespaces;
my $commands   = $commands->namespaces(['Mojo::Command']);

METHODS

Mojo::Commands inherits all methods from Mojo::Command and implements the following new ones.

run

$commands = $commands->run;
$commands = $commands->run(@ARGV);

start

Mojo::Commands->start;
Mojo::Commands->start(@ARGV);