Radarr/NzbDrone.Api/Frontend/IMapHttpRequestsToDisk.cs

10 lines
180 B
C#

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