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::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!');

usage

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

METHODS

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

run

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