mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
13 lines
252 B
C#
13 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('/'))
|
|
{
|
|
}
|
|
}
|
|
}
|