Commit 729833947c72e7333025cb24de2d4b4fb4fc5a2e

Authored by Athos
1 parent 678a1a80

move LWP to CoprStatus

Showing 2 changed files with 1 additions and 1 deletions   Show diff stats
app.psgi
... ... @@ -2,7 +2,6 @@
2 2 use strict;
3 3 use warnings;
4 4 use CoprStatus;
5   -use LWP::UserAgent;
6 5 use Plack::Builder;
7 6 use Plack::Request;
8 7  
... ...
lib/CoprStatus.pm
... ... @@ -3,6 +3,7 @@ use strict;
3 3 use warnings;
4 4 use JSON;
5 5 use Text::Template;
  6 +use LWP::UserAgent;
6 7  
7 8 $ENV{'PERL_LWP_SSL_VERIFY_HOSTNAME'} = 0;
8 9  
... ...