Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created September 23, 2015 02:58
Show Gist options
  • Save dcomartin/66a884539ca8e15a9459 to your computer and use it in GitHub Desktop.
Save dcomartin/66a884539ca8e15a9459 to your computer and use it in GitHub Desktop.
Nancy Module
public class NancyDemo : NancyModule
{
public NancyDemo()
{
Get["/nancy/demo"] = parameters => new string[] { "Hello", "World" };
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment