28 lines
589 B
C#
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();
|
|
}
|
|
} |