mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
18 lines
442 B
C#
18 lines
442 B
C#
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();
|
|
}
|
|
}
|
|
} |