15 lines
264 B
C#
15 lines
264 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Owin;
|
|
using Owin;
|
|
|
|
[assembly: OwinStartup(typeof(Step.App_Start.Startup))]
|
|
|
|
namespace Step.App_Start
|
|
{
|
|
public class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app) => app.MapSignalR();
|
|
}
|
|
}
|