The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl

use strict;
use warnings;

use FCGI::Engine;

{
    package Foo;
    sub handler { () }
}

FCGI::Engine->new_with_options(handler_class => 'Foo')->run(
    process_name         => 'minion',
    manager_process_name => 'overseer',
);