The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
1234567891011121314151617181920212223242526 package CustomContext::Controller::Foo;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;
package
CustomContext::Controller::Foo;
use
Kelp::Base
'CustomContext::Controller'
;
sub
test
{
my
(
$self
) =
@_
->res->text;
return
ref
}
nested_psgi
[
200,
'Content-Type'
=>
'text/plain'
],
'PSGI OK'
];
1;