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