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

13 lines
247 B

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