Unalog - Interact with the Unalog
use Unalog;
my $ua = Unalog->new( username = 'me', password => 'hohoho' );
$ua->add(
url => 'http://www.google.com',
title => 'google',
comment => 'my favorite search engine'
);
This is alpha software for routing links to unalog.mine.nu. The interface will very likely change.
new()Logs into unalog using the username and password that are passed
in.
my $unalog = Unalog->new( username => 'me', password => 'ins3cur3' );
add()Add will add a site to your unalog account. You must pass in url
and title parameters; comment is optional.
$unalog->add(
url => 'http://www.google.com',
title => 'google',
comment => 'my favorite search engine'
);