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.
Radarr/src/Radarr.Api.V2/RadarrV2Module.cs

13 lines
238 B

using Radarr.Http;
namespace Radarr.Api.V2
{
public abstract class RadarrV2Module : RadarrModule
{
protected RadarrV2Module(string resource)
: base("/api/v2/" + resource.Trim('/'))
{
}
}
}