mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 10:37:41 +00:00
14 lines
No EOL
264 B
C#
14 lines
No EOL
264 B
C#
using System.IO;
|
|
using System.Linq;
|
|
using Nancy;
|
|
|
|
namespace NzbDrone.Api.Extensions
|
|
{
|
|
public class RootPathProvider : IRootPathProvider
|
|
{
|
|
public string GetRootPath()
|
|
{
|
|
return Directory.GetCurrentDirectory();
|
|
}
|
|
}
|
|
} |