mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-02 13:04:37 +00:00
16 lines
No EOL
277 B
C#
16 lines
No EOL
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('/'))
|
|
{
|
|
}
|
|
|
|
|
|
|
|
}
|
|
} |