Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created January 27, 2016 03:28
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/3517bcd391a6a9548a89 to your computer and use it in GitHub Desktop.
Save dcomartin/3517bcd391a6a9548a89 to your computer and use it in GitHub Desktop.
public class NancyDemoModule : NancyModule
{
public NancyDemoModule()
{
Get["HelloWorlRoute", "/nancy/demo"] = parameters => new[] { "Hello", "World" };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment