mirror of
https://github.com/Radarr/Radarr
synced 2025-12-15 12:55:14 +01:00
12 lines
No EOL
235 B
C#
12 lines
No EOL
235 B
C#
using Nancy;
|
|
|
|
namespace NzbDrone.Api
|
|
{
|
|
public abstract class NzbDroneApiModule : NancyModule
|
|
{
|
|
protected NzbDroneApiModule(string resource)
|
|
: base("/api/" + resource.Trim('/'))
|
|
{
|
|
}
|
|
}
|
|
} |