File: README

package info (click to toggle)
libplack-middleware-status-perl 1.101150-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 144 kB
  • sloc: perl: 142; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
NAME
    Plack::Middleware::Status - Plack Middleware for mapping urls to status
    code-driven responses

VERSION
    version 1.101150

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

AUTHOR
      Patrick Donelan <pat@patspam.com>

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.