Help for this page

Select Code to Download


  1. or download this
    sub fetch
    {
    ...
        my $resp         = $ua->get( $uri );
        ...
    }
    
  2. or download this
    use Moose;
    has 'ua', is => 'ro', default => sub { LWP::UserAgent->new };
    ...
    
        ...
    }