26 lines
444 B
C#
26 lines
444 B
C#
using Core.Annotations;
|
|
using Core.Callbacks;
|
|
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";
|
|
}
|
|
}
|