diff --git a/Libraries/SPTarkov.Server.Core/Servers/Http/SptHttpListener.cs b/Libraries/SPTarkov.Server.Core/Servers/Http/SptHttpListener.cs index 87ee7ff9..7245f835 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/Http/SptHttpListener.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/Http/SptHttpListener.cs @@ -223,4 +223,10 @@ public class SptHttpListener : IHttpListener resp.StartAsync().Wait(); resp.CompleteAsync().Wait(); } + + private record Response(string Method, string jsonData); + + private record Request(string Method, object output); + + private record RequestData(string Url, object Headers, object Data); }