Plack::Middleware::Status - Plack Middleware for mapping urls to status code-driven responses
Contents
Copyright And License
This software is copyright (c) 2010 by Patrick Donelan.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5
programming language system itself.
perl v5.40.1 2025-02-18 Plack::Middleware::Status(3pm)
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
