Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active September 23, 2015 02:54
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/25540c6f30fe1d247379 to your computer and use it in GitHub Desktop.
Save dcomartin/25540c6f30fe1d247379 to your computer and use it in GitHub Desktop.
Nancy Owin
public class Startup
{
public void Configuration(IAppBuilder app)
{
// All of our other middleware
// ...
// Nancy
app.UseNancy();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment