Skip to content

Instantly share code, notes, and snippets.

@mvrmoreira
Created February 13, 2017 16:03
Show Gist options
  • Save mvrmoreira/6dbe94fa7bd90876f73e844fc65d0754 to your computer and use it in GitHub Desktop.
Save mvrmoreira/6dbe94fa7bd90876f73e844fc65d0754 to your computer and use it in GitHub Desktop.
using Nancy;
namespace Nala
{
public class NalaModule : NancyModule
{
public NalaModule()
{
Get["/"] = parameters => "Hi, I'm a pretty dog!";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment