This commit is contained in:
2022-01-25 18:30:52 +01:00
parent d7c73a8503
commit 86d13cce04
13 changed files with 594 additions and 0 deletions

13
HttpClient/Program.cs Normal file
View File

@@ -0,0 +1,13 @@

namespace EonaCat.Testers.HttpClient
{
public static class HttpClientTest
{
public static void Main()
{
Console.WriteLine("Test");
var httpClient = new EonaCat.HttpClient.HttpClient("test");
httpClient.
}
}
}