mirror of
https://github.com/Radarr/Radarr
synced 2025-12-21 07:43:36 +01:00
12 lines
252 B
C#
12 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);
|
|
}
|
|
}
|