mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
12 lines
252 B
C#
12 lines
252 B
C#
using Nancy;
|
|
|
|
namespace Prowlarr.Http.Frontend.Mappers
|
|
{
|
|
public interface IMapHttpRequestsToDisk
|
|
{
|
|
string Map(string resourceUrl);
|
|
bool CanHandle(string resourceUrl);
|
|
Response GetResponse(string resourceUrl);
|
|
}
|
|
}
|