Radarr/NzbDrone.Core/Providers/IHttpProvider.cs

8 lines
131 B
C#
Raw Normal View History

namespace NzbDrone.Core.Providers
{
public interface IHttpProvider
{
string GetRequest(string request);
}
}