Files
SPT-Server-Build/Core/Servers/Ws/IWebSocketConnectionHandler.cs
T
2025-01-15 15:06:54 +00:00

11 lines
216 B
C#

using System.Net.WebSockets;
namespace Core.Servers.Ws;
public interface IWebSocketConnectionHandler
{
string GetHookUrl();
string GetSocketId();
Task OnConnection(WebSocket ws, HttpContext context);
}