mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-25 11:13:39 +02:00
13 lines
250 B
C#
13 lines
250 B
C#
using Sonarr.Http;
|
|
|
|
namespace Sonarr.Api.V3
|
|
{
|
|
public abstract class SonarrV3FeedModule : SonarrModule
|
|
{
|
|
protected SonarrV3FeedModule(string resource)
|
|
: base("/feed/v3/" + resource.Trim('/'))
|
|
{
|
|
}
|
|
}
|
|
}
|