refactoring: removed external dependencies from server, removed webhooks from server

This commit is contained in:
2024-05-19 08:54:49 +03:00
parent b84538b238
commit e9dc45265a
53 changed files with 642 additions and 1049 deletions
+1 -2
View File
@@ -18,9 +18,8 @@ namespace Ragon.Server.IO;
public interface INetworkServer
{
public Executor Executor { get; }
public void Stop();
public void Update();
public void Broadcast(byte[] data, NetworkChannel channel);
public void Start(INetworkListener listener, NetworkConfiguration configuration);
public void Listen(INetworkListener listener, NetworkConfiguration configuration);
}