mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02: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();
|
|
}
|
|
}
|
|
} |