mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
9 lines
206 B
C#
9 lines
206 B
C#
namespace NzbDrone.Common.Http
|
|
{
|
|
public interface IHttpRequestInterceptor
|
|
{
|
|
HttpRequest PreRequest(HttpRequest request);
|
|
HttpResponse PostResponse(HttpResponse response);
|
|
}
|
|
}
|