mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-27 18:02:05 +01:00
11 lines
271 B
C#
11 lines
271 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Lidarr.Http.Frontend.Mappers
|
|
{
|
|
public interface IMapHttpRequestsToDisk
|
|
{
|
|
string Map(string resourceUrl);
|
|
bool CanHandle(string resourceUrl);
|
|
IActionResult GetResponse(string resourceUrl);
|
|
}
|
|
}
|