Skip to content

Instantly share code, notes, and snippets.

@kimsk
Created January 12, 2014 22:29
Show Gist options
  • Save kimsk/8391529 to your computer and use it in GitHub Desktop.
Save kimsk/8391529 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Nancy;
namespace DurandalNancy
{
public class DurandalNancyModule : NancyModule
{
public DurandalNancyModule()
{
Get["/"] = p => View["index"];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment