mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-01 12:08:55 +00:00
12 lines
250 B
C#
12 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('/'))
|
|
{
|
|
}
|
|
}
|
|
}
|