Skip to content

Instantly share code, notes, and snippets.

@bradygaster-zz
Created July 26, 2012 19:42
Show Gist options
  • Save bradygaster-zz/3184077 to your computer and use it in GitHub Desktop.
Save bradygaster-zz/3184077 to your computer and use it in GitHub Desktop.
namespace NandyFxDemo.NancyStuff
{
public class HelloWorldModule : Nancy.NancyModule
{
public HelloWorldModule()
{
Get["/hello"] = x =>
{
return "Hello World";
};
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment