Files
SPT-Server-Build/Core/Routers/Dynamic/LocationDynamicRouter.cs
T
2025-01-19 11:46:12 +00:00

25 lines
422 B
C#

using Core.Annotations;
using Core.DI;
using Core.Utils;
namespace Core.Routers.Dynamic;
[Injectable(InjectableTypeOverride = typeof(DynamicRouter))]
public class LocationDynamicRouter : DynamicRouter
{
public LocationDynamicRouter(
JsonUtil jsonUtil
) : base(
jsonUtil,
[]
)
{
}
public override string GetTopLevelRoute()
{
return "spt-loot";
}
}