Files
Readarr/src/Lidarr.Api.V1/LidarrV1FeedModule.cs
2019-09-14 15:12:15 +01:00

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('/'))
{
}
}
}