mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-04 13:10:06 -05:00
13 lines
247 B
C#
13 lines
247 B
C#
using Lidarr.Http;
|
|
|
|
namespace Lidarr.Api.V1
|
|
{
|
|
public abstract class LidarrV1FeedModule : LidarrModule
|
|
{
|
|
protected LidarrV1FeedModule(string resource)
|
|
: base("/feed/v1/" + resource.Trim('/'))
|
|
{
|
|
}
|
|
}
|
|
}
|