WWW-Bund

 view release on metacpan or  search on metacpan

lib/WWW/Bund.pm  view on Meta::CPAN

has io => (
    is      => 'lazy',
    builder => sub { WWW::Bund::LWPIO->new },
);


has cache_dir => (
    is      => 'lazy',
    builder => sub {
        my $base = $ENV{XDG_CACHE_HOME}
            // File::Spec->catdir($ENV{HOME} // (getpwuid($<))[7], '.cache');
        File::Spec->catdir($base, 'www-bund');
    },
);


has registry => (
    is      => 'lazy',
    builder => sub { WWW::Bund::Registry->new },
);



( run in 2.268 seconds using v1.01-cache-2.11-cpan-9789f410c06 )