Skip to content

Instantly share code, notes, and snippets.

@grumpydev
Created August 27, 2013 14:56
Show Gist options
  • Save grumpydev/6354652 to your computer and use it in GitHub Desktop.
Save grumpydev/6354652 to your computer and use it in GitHub Desktop.
public class TestModule : Nancy.NancyModule
{
public TestModule()
{
Get["/"] = _ =>
{
return "I am sync!";
};
Get["/async"] = async _ =>
{
await System.Threading.Tasks.Task.Delay(1000);
return "I am Async!";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment