Skip to content

Instantly share code, notes, and snippets.

@Crisfole
Created December 17, 2014 18:47
Show Gist options
  • Save Crisfole/8be9f5658ca97924a9be to your computer and use it in GitHub Desktop.
Save Crisfole/8be9f5658ca97924a9be to your computer and use it in GitHub Desktop.
Demo Module
using Nancy;
namespace MyNamespace
{
public class MyModule : NancyModule {
public MyModule() {
Get["/"] = GetRoot;
}
private dynamic GetRoot(dynamic _) {
return View["index"];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment