File: cgi-script.psgi

package info (click to toggle)
libplack-perl 1.0051-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,484 kB
  • sloc: perl: 5,289; sh: 4; makefile: 4; javascript: 1
file content (5 lines) | stat: -rw-r--r-- 163 bytes parent folder | download | duplicates (10)
1
2
3
4
5
use CGI::Emulate::PSGI;
my $handler = CGI::Emulate::PSGI->handler(sub {
    do "hello.cgi";
    CGI::initialize_globals() if defined &CGI::initialize_globals;
});