Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
my $app = sub { return [ 200, [], [ "Hello World" ] ]; }; use Plack::Builder; builder { enable "JSONP"; enable "Auth::Basic", authenticator => sub { ... }; enable "Deflater"; $app; };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Plack::Builder point to script
by karlgoethebier (Abbot) on Jul 19, 2023 at 18:05 UTC |