mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
13 lines
247 B
C#
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('/'))
|
|
{
|
|
}
|
|
}
|
|
}
|