1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-29 11:25:26 +00:00
Radarr/NzbDrone.Api/Frontend/Mappers/IMapHttpRequestsToDisk.cs
Keivan Beigi 24ba4390a1 moved static resource to basic nancy module.
cache and gzip piplelines are missing
2013-08-19 19:31:26 -07:00

9 lines
188 B
C#

namespace NzbDrone.Api.Frontend.Mappers
{
public interface IMapHttpRequestsToDisk
{
string Map(string resourceUrl);
bool CanHandle(string resourceUrl);
}
}