24 lines
476 B
C#
24 lines
476 B
C#
using SPTarkov.Common.Annotations;
|
|
using SPTarkov.Server.Core.DI;
|
|
using SPTarkov.Server.Core.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Routers.Dynamic;
|
|
|
|
[Injectable(InjectableTypeOverride = typeof(DynamicRouter))]
|
|
public class LocationDynamicRouter : DynamicRouter
|
|
{
|
|
public LocationDynamicRouter(
|
|
JsonUtil jsonUtil
|
|
) : base(
|
|
jsonUtil,
|
|
[]
|
|
)
|
|
{
|
|
}
|
|
|
|
public override string GetTopLevelRoute()
|
|
{
|
|
return "spt-loot";
|
|
}
|
|
}
|