mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-25 06:10:48 +02:00
15 lines
242 B
C#
15 lines
242 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common
|
|
{
|
|
public class Services
|
|
{
|
|
public static String RootUrl
|
|
{
|
|
get
|
|
{
|
|
return "http://services.nzbdrone.com";
|
|
}
|
|
}
|
|
}
|
|
}
|