Net::Delicious::Constants::Response - constant variables for del.icio.us response messages


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

Index


Code Index:

NAME

Top

Net::Delicious::Constants::Response - constant variables for del.icio.us response messages

SYNOPSIS

Top

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

DESCRIPTION

Top

Constant variables for del.icio.us response messages.

CONSTANTS

Top

RESPONSE_ERROR

String.

RESPONSE_DONE

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::Response;
use strict;

# $Id: Response.pm,v 1.12 2008/03/03 16:55:04 asc Exp $

$Net::Delicious::Constants::Response::VERSION = '1.14';

use constant RESPONSE_ERROR => "something went wrong";

use constant RESPONSE_DONE  => "done";

use constant RESPONSE_OK => "ok";

BEGIN {
    use vars qw (@EXPORT_OK);

    @EXPORT_OK = qw (RESPONSE_ERROR
		     RESPONSE_DONE
		     RESPONSE_OK);
}


return 1;