moved logic for reading static file to mappers

This commit is contained in:
kay.one
2013-08-19 23:23:36 -07:00
parent 290e072f2e
commit 9f0ae763ff
20 changed files with 144 additions and 209 deletions

View File

@@ -1,9 +1,11 @@

using Nancy;
namespace NzbDrone.Api.Frontend.Mappers
{
public interface IMapHttpRequestsToDisk
{
string Map(string resourceUrl);
bool CanHandle(string resourceUrl);
Response GetResponse(string resourceUrl);
}
}