3xpl websocket client in case anyone wanted one. Don't bother using it though, their websocket service is a piece of shit that's totally broken which I only found out after wasting a day on it.

This commit is contained in:
barelyprofessional
2024-06-16 12:18:56 +08:00
parent cdad1d6549
commit 5cdab275c3
12 changed files with 4026 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System.Net;
using System.Text;
using Spectre.Console;
using ThreeXplWsClient.Events;
namespace ThreeXplCliClient
{
public class Program
{
static async Task Main(string[] args)
{
Console.OutputEncoding = Encoding.UTF8;
AnsiConsole.MarkupLine("[green]3xpl test client started[/]");
var cliClient = new ThreeXplClient();
await cliClient.Start();
}
}
}