NAME
Sledge::Engine - run Sledge based application (EXPERIMENTAL).
SYNOPSIS
# MyApp.pm
package MyApp;
use Sledge::Engine;
__PACKAGE__->setup;
# mod_perl configuration.
<Location />
SetHandler perl-script
PerlHandler MyApp
</Location>
# CGI mode.
#!/usr/bin/perl
use strict;
use MyApp;
MyApp->run;
AUTHOR
Tomohiro IKEBE, <ikebe@shebang.jp>
LICENSE
Copyright 2006 Tomohiro IKEBE, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.