mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
12 lines
212 B
C#
12 lines
212 B
C#
|
|
using Nancy;
|
|
|
|
namespace NzbDrone.Api.Frontend.Mappers
|
|
{
|
|
public interface IMapHttpRequestsToDisk
|
|
{
|
|
bool CanHandle(string resourceUrl);
|
|
Response GetResponse(string resourceUrl);
|
|
}
|
|
}
|