The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package WWW::Curl::UserAgent::Handler;
$WWW::Curl::UserAgent::Handler::VERSION = '0.9.8';
use Moose;

has request => (
    is       => 'ro',
    isa      => 'WWW::Curl::UserAgent::Request',
    required => 1,
);

has on_success => (
    is       => 'ro',
    isa      => 'CodeRef',
    required => 1,
);

has on_failure => (
    is       => 'ro',
    isa      => 'CodeRef',
    required => 1,
);

no Moose;
__PACKAGE__->meta->make_immutable;
1;