mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
13 lines
240 B
C#
13 lines
240 B
C#
using Nancy;
|
|
|
|
namespace Lidarr.Api.V1
|
|
{
|
|
public abstract class LidarrV1FeedModule : NancyModule
|
|
{
|
|
protected LidarrV1FeedModule(string resource)
|
|
: base("/feed/v1/" + resource.Trim('/'))
|
|
{
|
|
}
|
|
}
|
|
}
|