Skip to content

Instantly share code, notes, and snippets.

@mrstebo
Created June 2, 2020 12:27
Show Gist options
  • Select an option

  • Save mrstebo/9a631473b878e35c25a32a0124d18dc7 to your computer and use it in GitHub Desktop.

Select an option

Save mrstebo/9a631473b878e35c25a32a0124d18dc7 to your computer and use it in GitHub Desktop.
lets-play-with-nancy-2
using Nancy;
namespace NancyBooks.Modules
{
public class HomeModule : NancyModule
{
public HomeModule()
{
Get["/"] = _ =>
{
return "Hello, World";
};
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment