Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Routers/Dynamic/HttpDynamicRouter.cs
T
2025-04-22 14:49:05 +01:00

21 lines
629 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 HttpDynamicRouter : DynamicRouter
{
public HttpDynamicRouter(ImageRouter imageRouter, JsonUtil jsonUtil) : base(
jsonUtil,
[
new RouteAction(".jpg", (_, _, _, _) => imageRouter.GetImage()),
new RouteAction(".png", (_, _, _, _) => imageRouter.GetImage()),
new RouteAction(".ico", (_, _, _, _) => imageRouter.GetImage())
]
)
{
}
}