Skip to content

Instantly share code, notes, and snippets.

@celogeek
Created October 24, 2013 12:35
Show Gist options
  • 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