NAME
Plack::Handler::Thrall - Plack adapter for Thrall
SYNOPSIS
use
Plack::Loader;
my
$loader
= Plack::Loader->load(
'Thrall'
,
port
=> 80);
$loader
->run(
sub
{ [200, [
'Content-Type'
,
'text/plain'
], [
'PSGI app'
]] });
DESCRIPTION
This is a stub module that allows Thrall to be loaded up under plackup and other Plack tools. Set $ENV{PLACK_SERVER}
to 'Thrall'
or use the -s parameter to plackup to use Thrall under Plack.
See plackup and thrall (lower case) for available command line options.
SEE ALSO
thrall, Thrall, Plack, Plack::Runner.
LICENSE
Copyright (c) 2013-2016, 2023 Piotr Roszatycki <dexter@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as perl itself.