]> Dogcows Code - chaz/p5-HTTP-AnyUA/blob - lib/HTTP/AnyUA/Backend/HTTP/Tiny.pm
initial commit
[chaz/p5-HTTP-AnyUA] / lib / HTTP / AnyUA / Backend / HTTP / Tiny.pm
1 package HTTP::AnyUA::Backend::HTTP::Tiny;
2 # ABSTRACT: A unified programming interface for HTTP::Tiny
3
4 =head1 DESCRIPTION
5
6 This module adds support for the HTTP client L<HTTP::Tiny> to be used with the unified programming
7 interface provided by L<HTTP::AnyUA>.
8
9 =head1 SEE ALSO
10
11 =for :list
12 * L<HTTP::AnyUA::Backend>
13
14 =cut
15
16 use warnings;
17 use strict;
18
19 our $VERSION = '9999.999'; # VERSION
20
21 use parent 'HTTP::AnyUA::Backend';
22
23
24 sub request {
25 my $self = shift;
26
27 return $self->ua->request(@_);
28 }
29
30 1;
This page took 0.02979 seconds and 4 git commands to generate.