Skip to content

Instantly share code, notes, and snippets.

@jchannon
Created April 5, 2012 12:34
Show Gist options
  • Select an option

  • Save jchannon/2310741 to your computer and use it in GitHub Desktop.

Select an option

Save jchannon/2310741 to your computer and use it in GitHub Desktop.
public HomeModule()
{
Get["/"] = parameters =>
{
return View["Index"];
};
this.After += AfterRequest(this.Context);
}
public AfterPipeline AfterRequest(NancyContext ctx)
{
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment