mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-30 17:48:52 +01:00
13 lines
248 B
C#
13 lines
248 B
C#
using Prowlarr.Http;
|
|
|
|
namespace Prowlarr.Api.V1
|
|
{
|
|
public abstract class ProwlarrV1Module : ProwlarrModule
|
|
{
|
|
protected ProwlarrV1Module(string resource)
|
|
: base("/api/v1/" + resource.Trim('/'))
|
|
{
|
|
}
|
|
}
|
|
}
|