Skip to content

Instantly share code, notes, and snippets.

@melvinlee
Created May 23, 2014 01:42
Show Gist options
  • Save melvinlee/572461c17d68212dad3a to your computer and use it in GitHub Desktop.
Save melvinlee/572461c17d68212dad3a to your computer and use it in GitHub Desktop.
Owin Startup class
public class Startup
{
public void Configuration(IAppBuilder app)
{
// Configure SignalR
app.MapSignalR();
// Configure diagnostics
app.UseErrorPage();
// Configure Nancy
app.UseNancy();
app.UseWelcomePage();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment