mirror of https://github.com/Sonarr/Sonarr
12 lines
233 B
C#
12 lines
233 B
C#
|
using Nancy;
|
|||
|
|
|||
|
namespace Sonarr.Api.V3
|
|||
|
{
|
|||
|
public abstract class SonarrV3Module : NancyModule
|
|||
|
{
|
|||
|
protected SonarrV3Module(string resource)
|
|||
|
: base("/api/v3/" + resource.Trim('/'))
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|