16 lines
351 B
C#
16 lines
351 B
C#
using Microsoft.AspNetCore.Builder;
|
|
|
|
namespace Syski.WebSocket.Services.WebSockets
|
|
{
|
|
public static class WebSocketMiddlewareExtensions
|
|
{
|
|
|
|
public static IApplicationBuilder UseWebSocketMiddleware(this IApplicationBuilder app)
|
|
{
|
|
app.UseMiddleware<WebSocketMiddleware>();
|
|
return app;
|
|
}
|
|
|
|
}
|
|
}
|