Move more initialization, mod loading and http requests over to async

This commit is contained in:
Archangel
2025-05-29 19:05:55 +02:00
committed by Jesse
parent c930197942
commit fa1368fb47
19 changed files with 136 additions and 139 deletions
@@ -2,6 +2,6 @@ namespace SPTarkov.Server.Core.DI;
public interface ISerializer
{
public void Serialize(string sessionID, HttpRequest req, HttpResponse resp, object? body);
public Task Serialize(string sessionID, HttpRequest req, HttpResponse resp, object? body);
public bool CanHandle(string route);
}