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