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