logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Plack::Middleware::Status - Plack Middleware for mapping urls to status code-driven responses

Author

         Patrick Donelan <pat@patspam.com>

Name

       Plack::Middleware::Status - Plack Middleware for mapping urls to status code-driven responses

Synopsis

           # app.psgi
           use Plack::Builder;
           my $app = sub {
               # ...
           };
           builder {
               enable 'Status', path => qr{/not-implemented}, status => 501;
               $app;
           };

Version

       version 1.101150

See Also