Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created January 27, 2016 03:50
Show Gist options
  • Save dcomartin/282d97cdad02c9585ca3 to your computer and use it in GitHub Desktop.
Save dcomartin/282d97cdad02c9585ca3 to your computer and use it in GitHub Desktop.
public class NancyDemoModule : NancyModule
{
public NancyDemoModule(IResourceLinker linker)
{
Get["HelloWorldRoute", "/nancy/demo"] = parameters => new[] { "Hello", "World" };
Get["FindHelloWorld", "/nancy/findhelloworld"] = parameters => new []
{
linker.BuildAbsoluteUri(Context, "HelloWorldRoute")
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment