Net::Delicious::Constants::Uri - constant variables for del.icio.us URIs


Net-Delicious documentation Contained in the Net-Delicious distribution.

Index


Code Index:

NAME

Top

Net::Delicious::Constants::Uri - constant variables for del.icio.us URIs

SYNOPSIS

Top

 use Net::Delicious::Constants qw (:uri)

DESCRIPTION

Top

Constant variables for del.icio.us URIs. cut

CONSTANTS

Top

URI_DELICIOUS

String.

URI_API

String.

VERSION

Top

1.13

DATE

Top

$Date: 2008/03/03 16:55:04 $

AUTHOR

Top

Aaron Straup Cope <ascope@cpan.org>

SEE ALSO

Top

Net::Delicious

Net::Delicious::Constants

LICENSE

Top

Copyright (c) 2004-2008 Aaron Straup Cope. All rights reserved.

This is free software, you may use it and distribute it under the same terms as Perl itself.


Net-Delicious documentation Contained in the Net-Delicious distribution.
package Net::Delicious::Constants::Uri;
use strict;

# $Id: Uri.pm,v 1.11 2008/03/03 16:55:04 asc Exp $
$Net::Delicious::Constants::Uri::VERSION = '1.14';

use URI;

use constant URI_DELICIOUS => URI->new("http://del.icio.us");

use constant URI_API => URI->new("https://api.del.icio.us/v1/"); 

BEGIN {
  use vars qw (@EXPORT_OK);

  @EXPORT_OK = qw (URI_DELICIOUS
		   URI_API);
}

return 1;