using System.Net.WebSockets; using System.Threading.Tasks; using DiscordBotCore.API.Sockets; namespace DiscordBotCore.Interfaces.API; internal interface ISocket { public string Path { get; } public Task HandleRequest(byte[] request, int count); }