Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created October 7, 2016 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/46d54a106308a1a34451cc996a3849a5 to your computer and use it in GitHub Desktop.
Save dcomartin/46d54a106308a1a34451cc996a3849a5 to your computer and use it in GitHub Desktop.
public class HomeModule : NancyModule
{
public HomeModule()
{
Get["/{category}"] = parameters => "My category is " + parameters.category;
Get["/sayhello"] = _ => "Hello from Nancy";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment