Files
SPT-Server-Build/Libraries/Core/Services/Mod/Image/ImageRouterService.cs
T
2025-01-19 17:45:48 +00:00

25 lines
481 B
C#

using SptCommon.Annotations;
namespace Core.Services.Mod.Image;
[Injectable(InjectionType.Singleton)]
public class ImageRouterService
{
protected Dictionary<string, string> routes = new();
public void AddRoute(string urlKey, string route)
{
routes[urlKey] = route;
}
public string GetByKey(string urlKey)
{
return routes[urlKey];
}
public bool ExistsByKey(string urlKey)
{
return routes.ContainsKey(urlKey);
}
}