The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Kelp::Base 'CustomContext::Controller';
sub test
{
my ($self) = @_;
$self->res->text;
return ref $self;
}
sub nested_psgi
{
my ($self) = @_;
return [
200,
['Content-Type' => 'text/plain'],
[
'PSGI OK'
],
];
}
1;