1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Api/NzbDroneApiModule.cs

18 lines
328 B
C#
Raw Normal View History

using System.Linq;
using Nancy;
2013-01-20 04:37:48 +03:00
using Nancy.Responses;
2013-01-20 04:37:48 +03:00
namespace NzbDrone.Api
{
public abstract class NzbDroneApiModule : NancyModule
{
protected NzbDroneApiModule(string resource)
2013-01-20 04:37:48 +03:00
: base("/api/" + resource.Trim('/'))
{
2013-01-20 04:37:48 +03:00
Options["/"] = x => new Response();
}
}
}