15 lines
332 B
C#
15 lines
332 B
C#
using Owin;
|
|
using Microsoft.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();
|
|
}
|
|
}
|
|
} |