mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
90fa261a00
stopped scheduler from running during integration tests.
13 lines
257 B
C#
13 lines
257 B
C#
using Nancy;
|
|
using Nancy.Security;
|
|
|
|
namespace NzbDrone.Api
|
|
{
|
|
public abstract class NzbDroneApiModule : NancyModule
|
|
{
|
|
protected NzbDroneApiModule(string resource)
|
|
: base("/api/" + resource.Trim('/'))
|
|
{
|
|
}
|
|
}
|
|
} |