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