Files
SPT-Server-Build/Core/Routers/Dynamic/LocationDynamicRouter.cs
T
CWX bb887b0901 Lots of new things (#40)
* callbacks

* controllers

* Router override

* make requests use interface

* create Routers

* extra parts
2025-01-12 15:35:32 +00:00

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";
}
}