mirror of
https://github.com/yawaflua/WebSockets.git
synced 2025-12-08 19:39:30 +02:00
9 lines
233 B
C#
9 lines
233 B
C#
using Microsoft.AspNetCore.Http;
|
|
using yawaflua.WebSockets.Core;
|
|
|
|
namespace yawaflua.WebSockets.Models.Interfaces;
|
|
|
|
internal interface IWebSocketController
|
|
{
|
|
Task OnMessageAsync(WebSocket webSocket, HttpContext httpContext);
|
|
} |