1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00
Files
Radarr/NzbDrone.Api/Frontend/Mappers/IMapHttpRequestsToDisk.cs
T
2013-08-19 23:23:36 -07:00

12 lines
212 B
C#

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