mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +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";
|
|
}
|
|
}
|
|
}
|
|
}
|