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

package TestRegistry::pages::sub::index;

use strict;
use warnings;
use Apache2::RequestRec ();
use Apache2::RequestIO ();
use Apache2::Const qw(OK);

return 1;

sub handler {
    my($class, $r) = @_;
    $r->content_type('text/plain');
    $r->print('sub index ok');
    return OK;
}