mirror of
https://github.com/Readarr/Readarr
synced 2026-01-11 01:53:37 +01:00
12 lines
252 B
C#
12 lines
252 B
C#
using Readarr.Http;
|
|
|
|
namespace Readarr.Api.V1
|
|
{
|
|
public abstract class ReadarrV1FeedModule : ReadarrModule
|
|
{
|
|
protected ReadarrV1FeedModule(string resource)
|
|
: base("/feed/v1/" + resource.Trim('/'))
|
|
{
|
|
}
|
|
}
|
|
}
|