More Type scaffolding

This commit is contained in:
CWX
2025-01-09 19:26:55 +00:00
parent 8640550b1c
commit c4ab797820
58 changed files with 4928 additions and 3 deletions
@@ -0,0 +1,9 @@
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();
}
}