Merge branch 'main' of https://github.com/sp-tarkov/server-csharp
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
using Core.Services.Image;
|
||||
using SptCommon.Annotations;
|
||||
using Core.Services.Mod.Image;
|
||||
using Core.Utils;
|
||||
|
||||
namespace Core.Routers;
|
||||
|
||||
+1
-1
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user