Plack::App::Proxy::Backend - pluggable backend for making the actual HTTP request
Contents
Description
This is a base class for HTTP backends for Plack::App::Proxy.
License
This library is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
perl v5.32.0 2021-01-09 Plack::App::Proxy::Backend(3pm)
Name
Plack::App::Proxy::Backend - pluggable backend for making the actual HTTP request
Synopsis
package Plack::App::Proxy::Backend::foo;
use parent 'Plack::App::Proxy::Backend';
sub call {
my $self = shift;
my ($env) = @_;
# ...
}
