using Microsoft.AspNetCore.Http; using yawaflua.WebSockets.Core; namespace yawaflua.WebSockets.Models.Interfaces; internal interface IWebSocketController { /// /// Example of working with IWebSocketController /// /// /// /// Task OnMessageAsync(IWebSocket webSocket, HttpContext httpContext); }