Created
May 23, 2014 01:42
-
-
Save melvinlee/572461c17d68212dad3a to your computer and use it in GitHub Desktop.
Owin Startup class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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