Sleep - A library for making REST web applications.


Sleep documentation Contained in the Sleep distribution.

Index


Code Index:

NAME

Top

Sleep - A library for making REST web applications.

DESCRIPTION

Top

Sleep is a web application that is used together with mod_perl. Sleep let's you write a Sleep::Resource class on top of a actual resource. This way it will catch get, post, put and delete requests to it.

SYNOPSYS

Top

VERSION

Top

0.0.4

LIMITATIONS

Top

Currently the only supported mime-type is application/json.

SEE ALSO

Top

Sleep::Handler, Sleep::Resource (Sleep::Resource), Sleep::Request, Sleep::Response, Sleep::Routes.

BUGS

Top

If you find a bug, please let the author know.

COPYRIGHT

Top

AUTHOR

Top

Peter Stuifzand <peter@stuifzand.eu>


Sleep documentation Contained in the Sleep distribution.

package Sleep;
use strict;
use warnings;

our $VERSION = '0.0.4';

1;

__END__