mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
14 lines
264 B
C#
14 lines
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();
|
|
}
|
|
}
|
|
} |