Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created January 12, 2016 03:05
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/ff0186ad63a03fc61a5b to your computer and use it in GitHub Desktop.
Save dcomartin/ff0186ad63a03fc61a5b to your computer and use it in GitHub Desktop.
using Nancy;
namespace AspNet5Nancy
{
public class NancyDemoModule : NancyModule
{
public NancyDemoModule()
{
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