Files
SethDiscordBot/DiscordBotCore/Interfaces/API/ISocket.cs
2024-12-18 23:58:13 +02:00

12 lines
273 B
C#

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<SocketResponse> HandleRequest(byte[] request, int count);
}