mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 20:42:04 -04:00
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:
18
ThreeXplCliClient/Program.cs
Normal file
18
ThreeXplCliClient/Program.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user