admin api packaging

This commit is contained in:
Rory&
2025-12-14 23:18:35 +01:00
parent a4527d166a
commit 4534d4dbf5
124 changed files with 2250 additions and 268 deletions
@@ -0,0 +1,12 @@
// See https://aka.ms/new-console-template for more information
using System.Net.Http.Json;
using ArcaneLibs.Extensions;
Console.WriteLine("Hello, World!");
using var hc = new HttpClient();
var response = hc.GetFromJsonAsAsyncEnumerable<object>("http://localhost:5112/users/1183568750931099679/deactivate");
await foreach (var item in response) {
Console.WriteLine(item.ToJson(indent: false));
}