mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 02:09:59 +00: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";
|
|
}
|
|
}
|
|
}
|
|
}
|