[go: up one dir, main page]

File: 00base-hello.psgi

package info (click to toggle)
starlet 0.31-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 356 kB
  • ctags: 141
  • sloc: perl: 2,029; makefile: 2
file content (3 lines) | stat: -rw-r--r-- 115 bytes parent folder | download | duplicates (4)
1
2
3
my $handler = sub {
    return [ 200, [ "Content-Type" => "text/plain", "Content-Length" => 5 ], [ "hello" ] ];
};