| Net-Delicious documentation | Contained in the Net-Delicious distribution. |
Net::Delicious::Constants::Response - constant variables for del.icio.us response messages
use Net::Delicious::Constants qw (:response)
Constant variables for del.icio.us response messages.
String.
String.
1.13
$Date: 2008/03/03 16:55:04 $
Aaron Straup Cope <ascope@cpan.org>
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;