Readarr/src/Readarr.Api.V1/ReadarrV1FeedModule.cs
2020-02-29 16:58:13 -05:00

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