Skip to content

Instantly share code, notes, and snippets.

@cuppster
Created July 5, 2014 21:46
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 cuppster/4fd26b2754aa433c67df to your computer and use it in GitHub Desktop.
Save cuppster/4fd26b2754aa433c67df to your computer and use it in GitHub Desktop.
DocModule.cs
using Nancy;
namespace MyApi
{
public class DocModule : NancyModule
{
public DocModule()
{
Get ["/doc"] = _ => {
return View ["index.html"];
};
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment