package HTTP::AnyUA::Backend::HTTP::Tiny; # ABSTRACT: A unified programming interface for HTTP::Tiny =head1 DESCRIPTION This module adds support for the HTTP client L to be used with the unified programming interface provided by L. =head1 SEE ALSO =for :list * L =cut use warnings; use strict; our $VERSION = '9999.999'; # VERSION use parent 'HTTP::AnyUA::Backend'; sub request { my $self = shift; return $self->ua->request(@_); } 1;