Files
SPT-Server-Build/Core/Callbacks/BundleCallbacks.cs
T
2025-01-06 22:52:49 +00:00

28 lines
589 B
C#

using Core.Models.Spt.Config;
namespace Core.Callbacks;
public class BundleCallbacks
{
private HttpConfig _httpConfig;
public BundleCallbacks()
{
}
public object SendBundle(string sessionID, object req, object res, object body)
{
throw new NotImplementedException();
}
public string GetBundles(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
public string GetBundle(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
}