mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
7093f352fe
backbone app is now fully served from nancy including css,js,html
14 lines
264 B
C#
14 lines
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();
|
|
}
|
|
}
|
|
} |