1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-25 11:13:39 +02:00
Sonarr/src/Sonarr.Api.V3/SonarrV3FeedModule.cs
2019-09-01 11:20:08 +02:00

13 lines
250 B
C#

using Sonarr.Http;
namespace Sonarr.Api.V3
{
public abstract class SonarrV3FeedModule : SonarrModule
{
protected SonarrV3FeedModule(string resource)
: base("/feed/v3/" + resource.Trim('/'))
{
}
}
}