Skip to content

Instantly share code, notes, and snippets.

@chrisa
Created March 12, 2010 17:52
Show Gist options
  • Select an option

  • Save chrisa/330569 to your computer and use it in GitHub Desktop.

Select an option

Save chrisa/330569 to your computer and use it in GitHub Desktop.
sub call {
my ($self, $env) = @_;
my $response = [...]; # regular PSGI response
return sub {
my $write = shift;
$write->($response);
post_hit_stuff();
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment