This commit is contained in:
Chomp
2025-01-29 10:35:52 +00:00
12 changed files with 2 additions and 107 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
using Core.Services.Image;
using SptCommon.Annotations;
using Core.Services.Mod.Image;
using Core.Utils;
namespace Core.Routers;
@@ -1,6 +1,6 @@
using SptCommon.Annotations;
namespace Core.Services.Mod.Image;
namespace Core.Services.Image;
[Injectable(InjectionType.Singleton)]
public class ImageRouterService
@@ -1,9 +0,0 @@
namespace Core.Services.Mod.DynamicRouter;
public class DynamicRouterMod
{
public string GetTopLevelRoute()
{
throw new NotImplementedException();
}
}
@@ -1,9 +0,0 @@
namespace Core.Services.Mod.DynamicRouter;
public class DynamicRouterModService
{
public void RegisterDynamicRouter(string name, List<object> routes, string topLevelRoute)
{
throw new NotImplementedException();
}
}
@@ -1,14 +0,0 @@
namespace Core.Services.Mod.HttpListener;
public class HttpListenerMod
{
public bool CanHandle(string sessionId, object req)
{
throw new NotImplementedException();
}
public async Task Handle(string sessionId, object req, object resp)
{
throw new NotImplementedException();
}
}
@@ -1,9 +0,0 @@
namespace Core.Services.Mod.HttpListener;
public class HttpListenerModService
{
public void RegisterHttpListener(string name, object canHandleOverride, object handleOverride)
{
throw new NotImplementedException();
}
}
@@ -1,14 +0,0 @@
namespace Core.Services.Mod.OnLoad;
public class OnLoadMod
{
public async Task OnLoad()
{
throw new NotImplementedException();
}
public string GetRoute()
{
throw new NotImplementedException();
}
}
@@ -1,9 +0,0 @@
namespace Core.Services.Mod.OnLoad;
public class OnLoadModService
{
public void RegisterOnLoad(string name, object onLoad, object getRoute)
{
throw new NotImplementedException();
}
}
@@ -1,14 +0,0 @@
namespace Core.Services.Mod.OnUpdate;
public class OnUpdateMod
{
public async Task<bool> OnUpdate(double timeSinceLastRun)
{
throw new NotImplementedException();
}
public string GetRoute()
{
throw new NotImplementedException();
}
}
@@ -1,9 +0,0 @@
namespace Core.Services.Mod.OnUpdate;
public class OnUpdateModService
{
public void RegisterOnUpdate(string name, object onUpdate, object getRoute)
{
throw new NotImplementedException();
}
}
@@ -1,9 +0,0 @@
namespace Core.Services.Mod.StaticRouter;
public class StaticRouterMod // TODO: : StaticRouter
{
public string GetTopLevelRoute()
{
throw new NotImplementedException();
}
}
@@ -1,9 +0,0 @@
namespace Core.Services.Mod.StaticRouter;
public class StaticRouterModService
{
public void RegisterStaticRouter(string name, List<object> routes, string topLevelRoute) // TODO: was List<RouteAction> routes
{
throw new NotImplementedException();
}
}