logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Plack::App::Proxy::Backend - pluggable backend for making the actual HTTP request

Author

       Lee Aylward

       Masahiro Honma

       Tatsuhiko Miyagawa

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) = @_;
             # ...
         }

See Also