Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
always use Future in modules using it directly
  • Loading branch information
haarg committed Aug 8, 2017
1 parent 4e85bf9 commit 0eb052e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/MetaCPAN/Sitemap.pm
Expand Up @@ -8,6 +8,7 @@ use Net::Async::HTTP;
use Cpanel::JSON::XS;
use IO::Compress::Gzip;
use HTML::Entities qw(encode_entities_numeric);
use Future;

use Moo;

Expand Down
1 change: 1 addition & 0 deletions lib/MetaCPAN/Web/Controller/Pod.pm
Expand Up @@ -5,6 +5,7 @@ use Moose;
use Try::Tiny;
use URI;
use HTML::Escape qw(escape_html);
use Future;

use namespace::autoclean;

Expand Down
1 change: 1 addition & 0 deletions lib/MetaCPAN/Web/Controller/Release.pm
@@ -1,6 +1,7 @@
package MetaCPAN::Web::Controller::Release;

use Moose;
use Future;

use namespace::autoclean;

Expand Down
1 change: 1 addition & 0 deletions lib/MetaCPAN/Web/Model/API/Lab.pm
@@ -1,6 +1,7 @@
package MetaCPAN::Web::Model::API::Lab;
use Moose;
use namespace::autoclean;
use Future;

extends 'MetaCPAN::Web::Model::API::File';

Expand Down
1 change: 1 addition & 0 deletions lib/MetaCPAN/Web/Model/API/Permission.pm
@@ -1,6 +1,7 @@
package MetaCPAN::Web::Model::API::Permission;

use Moose;
use Future;

extends 'MetaCPAN::Web::Model::API';

Expand Down
1 change: 1 addition & 0 deletions lib/MetaCPAN/Web/Model/ReleaseInfo.pm
Expand Up @@ -11,6 +11,7 @@ use Ref::Util qw( is_hashref );
use URI;
use URI::Escape qw(uri_escape uri_unescape);
use URI::QueryParam; # Add methods to URI.
use Future;

my %models = (
_release => 'API::Release',
Expand Down

0 comments on commit 0eb052e

Please sign in to comment.