17 lines
301 B
C#
17 lines
301 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Owin;
|
|
using Owin;
|
|
|
|
[assembly: OwinStartup(typeof(SignalRChat.Startup))]
|
|
|
|
namespace SignalRChat
|
|
{
|
|
public class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app)
|
|
{
|
|
app.MapSignalR();
|
|
}
|
|
}
|
|
} |