mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 10:19:41 +00:00
9 lines
180 B
C#
9 lines
180 B
C#
|
|
namespace NzbDrone.Api.Frontend
|
|
{
|
|
public interface IMapHttpRequestsToDisk
|
|
{
|
|
string Map(string resourceUrl);
|
|
bool CanHandle(string resourceUrl);
|
|
}
|
|
}
|