mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-27 01:42:03 +01:00
(cherry picked from commit d566c1efd42f9a94c524db311e8fa99bc6e0323f) (cherry picked from commit 4b0586bd3d1cca4682dee53cc5af5ef1fa66978e)
11 lines
274 B
C#
11 lines
274 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Lidarr.Http.Frontend.Mappers
|
|
{
|
|
public interface IMapHttpRequestsToDisk
|
|
{
|
|
string Map(string resourceUrl);
|
|
bool CanHandle(string resourceUrl);
|
|
FileStreamResult GetResponse(string resourceUrl);
|
|
}
|
|
}
|