Files
Prowlarr/src/Radarr.Api.V2/RadarrV2FeedModule.cs
T
2019-09-08 20:53:37 -04:00

13 lines
247 B
C#

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