mirror of https://github.com/lidarr/Lidarr
14 lines
264 B
C#
14 lines
264 B
C#
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using Nancy;
|
|||
|
|
|||
|
namespace NzbDrone.Api.Extentions
|
|||
|
{
|
|||
|
public class RootPathProvider : IRootPathProvider
|
|||
|
{
|
|||
|
public string GetRootPath()
|
|||
|
{
|
|||
|
return Directory.GetCurrentDirectory();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|