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.V3/RadarrV3Module.cs

13 lines
238 B

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