]> Dogcows Code - chaz/p5-HTTP-AnyUA/blob - lib/HTTP/AnyUA/Backend/HTTP/Tiny.pm
Version 0.900
[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
5 use warnings;
6 use strict;
7
8 our $VERSION = '0.900'; # VERSION
9
10 use parent 'HTTP::AnyUA::Backend';
11
12
13 sub request {
14 my $self = shift;
15
16 return $self->ua->request(@_);
17 }
18
19 1;
20
21 __END__
22
23 =pod
24
25 =encoding UTF-8
26
27 =head1 NAME
28
29 HTTP::AnyUA::Backend::HTTP::Tiny - A unified programming interface for HTTP::Tiny
30
31 =head1 VERSION
32
33 version 0.900
34
35 =head1 DESCRIPTION
36
37 This module adds support for the HTTP client L<HTTP::Tiny> to be used with the unified programming
38 interface provided by L<HTTP::AnyUA>.
39
40 =head1 SEE ALSO
41
42 =over 4
43
44 =item *
45
46 L<HTTP::AnyUA::Backend>
47
48 =back
49
50 =head1 BUGS
51
52 Please report any bugs or feature requests on the bugtracker website
53 L<https://github.com/chazmcgarvey/HTTP-AnyUA/issues>
54
55 When submitting a bug or request, please include a test-file or a
56 patch to an existing test-file that illustrates the bug or desired
57 feature.
58
59 =head1 AUTHOR
60
61 Charles McGarvey <chazmcgarvey@brokenzipper.com>
62
63 =head1 COPYRIGHT AND LICENSE
64
65 This software is copyright (c) 2017 by Charles McGarvey.
66
67 This is free software; you can redistribute it and/or modify it under
68 the same terms as the Perl 5 programming language system itself.
69
70 =cut
This page took 0.032672 seconds and 4 git commands to generate.