This commit is contained in:
kay.one 2013-02-23 12:35:26 -08:00
commit cf8be4bf8f
16 changed files with 20 additions and 21 deletions

View file

@ -0,0 +1,14 @@
using System.IO;
using System.Linq;
using Nancy;
namespace NzbDrone.Api.Extensions
{
public class RootPathProvider : IRootPathProvider
{
public string GetRootPath()
{
return Directory.GetCurrentDirectory();
}
}
}