mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
27da524391
(cherry picked from commit ad1f185330a30a2a9d27c9d3f18d384e66727c2a) Closes #9183
13 lines
307 B
C#
13 lines
307 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Radarr.Http.Frontend.Mappers
|
|
{
|
|
public interface IMapHttpRequestsToDisk
|
|
{
|
|
string Map(string resourceUrl);
|
|
bool CanHandle(string resourceUrl);
|
|
Task<IActionResult> GetResponse(string resourceUrl);
|
|
}
|
|
}
|