1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-31 20:35:37 +00:00
Radarr/NzbDrone.Api/Extensions/RootPathProvider.cs

14 lines
264 B
C#
Raw Normal View History

using System.IO;
using System.Linq;
using Nancy;
2013-02-23 20:35:26 +00:00
namespace NzbDrone.Api.Extensions
{
public class RootPathProvider : IRootPathProvider
{
public string GetRootPath()
{
return Directory.GetCurrentDirectory();
}
}
}