The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Gitalist::Script::FastCGI;
use Moose;
use namespace::autoclean;

sub BUILD {
    require FCGI; # Make IPC::Run happy
    FCGI->VERSION(0.68);
}

extends 'Catalyst::Script::FastCGI';
with 'Gitalist::ScriptRole';

__PACKAGE__->meta->make_immutable;