Skip to content

Instantly share code, notes, and snippets.

@thecodejunkie
Created April 1, 2011 20:14

Revisions

  1. thecodejunkie created this gist Apr 1, 2011.
    9 changes: 9 additions & 0 deletions gistfile1.cs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    public class MainModule : NancyModule
    {
    public MainModule()
    {
    Get["/"] = parameters => {
    return "Hello World";
    };
    }
    }