Skip to content

Instantly share code, notes, and snippets.

@celogeek
Created October 24, 2013 12:35
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 celogeek/7136422 to your computer and use it in GitHub Desktop.
Save celogeek/7136422 to your computer and use it in GitHub Desktop.
env.psgi
#!/usr/bin/env perl
use strict;
use warnings;
use DDP;
p(%ENV);
return sub {
my ($env) = @_;
return [200, [], [p($env)]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment