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/RadarrV2FeedModule.cs

13 lines
247 B

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