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

NAME

Plack::Middleware::Reproxy::Callback - Use A Callback

SYNOPSIS

    builder {
        enable 'Reproxy::Callback', cb => sub {
            my ($self, $res, $env, $url) = @_;
        };
        $your_real_app;
    }