mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
17 lines
372 B
C#
17 lines
372 B
C#
using Microsoft.Owin;
|
|
using Owin;
|
|
using Owin.WebSocket.Extensions;
|
|
|
|
[assembly: OwinStartupAttribute(typeof(MonitoringWebApp.Startup))]
|
|
namespace MonitoringWebApp
|
|
{
|
|
public partial class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app)
|
|
{
|
|
app.MapWebSocketRoute<MyWebSocket>("/ws");
|
|
ConfigureAuth(app);
|
|
}
|
|
}
|
|
}
|