12 lines
249 B
C#
12 lines
249 B
C#
namespace Core.Services.Mod.DynamicRouter;
|
|
|
|
public class DynamicRouterModService
|
|
{
|
|
public void RegisterDynamicRouter(string name, List<object> routes, string topLevelRoute)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
|
|
}
|