1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Api/Frontend/Mappers/IMapHttpRequestsToDisk.cs

12 lines
212 B
C#

using Nancy;
namespace NzbDrone.Api.Frontend.Mappers
{
public interface IMapHttpRequestsToDisk
{
bool CanHandle(string resourceUrl);
Response GetResponse(string resourceUrl);
}
}