Remove whitespace [Gun.io WhitespaceBot]
[catagits/Gitalist.git] / lib / Gitalist / Script / FastCGI.pm
CommitLineData
501a990d 1package Gitalist::Script::FastCGI;
2use Moose;
3use namespace::autoclean;
4
1b45851d 5sub BUILD {
6 require FCGI; # Make IPC::Run happy
7 FCGI->VERSION(0.68);
8}
9
501a990d 10extends 'Catalyst::Script::FastCGI';
a18818fd 11with 'Gitalist::ScriptRole';
501a990d 12
501a990d 13__PACKAGE__->meta->make_immutable;