delicious-backup
view release on metacpan or search on metacpan
lib/Net/Delicious/Simple.pm view on Meta::CPAN
=cut
sub new {
my ($class, $config) = @_;
return unless my $del = Net::Delicious->new({
%$config,
updates => File::Temp::tempdir(CLEANUP => 1),
});
bless { del => $del } => $class;
}
=head2 tags
This returns all of your tags, in a list.
=cut
sub tags { my @tags = map { $_->tag } (shift)->{del}->tags }
( run in 0.408 second using v1.01-cache-2.11-cpan-65fba6d93b7 )