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