You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.TrashLib/Http/IServiceRequestBuilder.cs

10 lines
220 B

using Flurl.Http;
using Recyclarr.TrashLib.Config.Services;
namespace Recyclarr.TrashLib.Http;
public interface IServiceRequestBuilder
{
IFlurlRequest Request(IServiceConfiguration config, params object[] path);
}