hydra/src/lib/Hydra/Script/Server.pm
Eelco Dolstra 109e5807c2 Use CatalystX::Script::Server::Starman
This allows us to pass --max_server and similar options
to raise the number of workers from the default (5).
2011-11-22 16:44:32 +01:00

8 lines
119 B
Perl

package Hydra::Script::Server;
use Moose;
use namespace::autoclean;
extends 'CatalystX::Script::Server::Starman';
1;