Skip to content

Instantly share code, notes, and snippets.

@davidalpert
Created July 13, 2011 04:24
Show Gist options
  • Select an option

  • Save davidalpert/1079716 to your computer and use it in GitHub Desktop.

Select an option

Save davidalpert/1079716 to your computer and use it in GitHub Desktop.
a sample NancyModule demonstrating a base modulePath
public class MainModule : NancyModule
{
public MainModule() : base("/blog")
{
Get["/posts"] = parameters => {...};
Get["/tags"] = parameters => {...};
Get["/categories"] = parameters => {...};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment