Files
GMW/GMW-RT/Startup.cs
T
2014-04-02 12:27:25 +02:00

15 lines
332 B
C#

using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(SignalRChat.Startup))]
namespace SignalRChat
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
// Any connection or hub wire up and configuration should go here
app.MapSignalR();
}
}
}