The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mojo::Command::Fcgi - FCGI Command

SYNOPSIS

    use Mojo::Command::Fcgi;

    my $fcgi = Mojo::Command::Fcgi->new;
    $fcgi->run(@ARGV);

DESCRIPTION

Mojo::Command::Fcgi is a command interface to Mojo::Server::FCGI.

ATTRIBUTES

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

description

    my $description = $fcgi->description;
    $fcgi           = $fcgi->description('Foo!');

Short description of this command, used for the command list.

usage

    my $usage = $fcgi->usage;
    $fcgi     = $fcgi->usage('Foo!');

Usage information for this command, used for the help screen.

METHODS

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

run

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

Run this command.