mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
13 lines
238 B
C#
13 lines
238 B
C#
using Radarr.Http;
|
|
|
|
namespace Radarr.Api.V3
|
|
{
|
|
public abstract class RadarrV3Module : RadarrModule
|
|
{
|
|
protected RadarrV3Module(string resource)
|
|
: base("/api/v3/" + resource.Trim('/'))
|
|
{
|
|
}
|
|
}
|
|
}
|