mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 02:27:13 +00:00
7093f352fe
backbone app is now fully served from nancy including css,js,html
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();
|
|
}
|
|
}
|
|
} |