using SptCommon.Annotations; using Core.Models.Eft.Common; using Core.Utils; namespace Core.Callbacks; [Injectable(InjectableTypeOverride = typeof(BundleCallbacks))] public class BundleCallbacks( HttpResponseUtil _httpResponseUtil // BundleLoader _bundleLoader, ) { /// /// Handle singleplayer/bundles /// /// /// /// /// public string GetBundles(string url, EmptyRequestData info, string sessionID) { // return _httpResponseUtil.NoBody(_bundleLoader.GetBundles()); return _httpResponseUtil.NoBody(new List()); } public string GetBundle(string url, object info, string sessionID) { return "BUNDLE"; } }