Skip to content

Instantly share code, notes, and snippets.

@akanehara
Created December 26, 2017 00:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akanehara/25c04013780662003ebfc6f7aea9f004 to your computer and use it in GitHub Desktop.
Save akanehara/25c04013780662003ebfc6f7aea9f004 to your computer and use it in GitHub Desktop.
PSGI
#!/usr/bin/perl
use strict;
use warnings;
my $app = sub {
[200, [
'Content-Type' => 'text/plain',
], [
"hello, world\n",
]];
};
$app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment