Luski.Net/Luski.net/Server.Incoming.cs
JacobTech d8fbf281d0 Server Separation.
I moved the two server types to their own classes to prevent API calls to a server, not of that type.
2023-07-08 09:06:13 -04:00

12 lines
222 B
C#

using System;
using WebSocketSharp;
namespace Luski.net;
public partial class Server
{
internal void ServerOut_OnError(object? sender, ErrorEventArgs e)
{
this.Exception(new Exception(e.Message));
}
}