mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-03 15:12:13 +02:00
16 lines
277 B
C#
16 lines
277 B
C#
|
using System.Linq;
|
||
|
using Nancy;
|
||
|
|
||
|
namespace NzbDrone.Api.QualityProfiles
|
||
|
{
|
||
|
public abstract class NzbDroneApiModule : NancyModule
|
||
|
{
|
||
|
protected NzbDroneApiModule(string resource)
|
||
|
: base("/api/" + resource.Trim('/'))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|