mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-10 06:03:32 +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.Extentions
|
|
{
|
|
public class RootPathProvider : IRootPathProvider
|
|
{
|
|
public string GetRootPath()
|
|
{
|
|
return Directory.GetCurrentDirectory();
|
|
}
|
|
}
|
|
} |