Skip to content

Instantly share code, notes, and snippets.

@theory
Created October 14, 2010 23:32
Show Gist options
  • Save theory/627283 to your computer and use it in GitHub Desktop.
Save theory/627283 to your computer and use it in GitHub Desktop.
sub {
my $env = shift;
if (my $method = $router->match($env)) {
return $method->();
} else {
return [$router->code, $router->headers, [$router->message]];
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment