mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
7093f352fe
backbone app is now fully served from nancy including css,js,html
13 lines
248 B
C#
13 lines
248 B
C#
using System.Linq;
|
|
using Nancy;
|
|
|
|
namespace NzbDrone.Api.FrontendModule
|
|
{
|
|
public class IndexModule : NancyModule
|
|
{
|
|
public IndexModule()
|
|
{
|
|
Get[@"/"] = x => View["NzbDrone.Backbone/index.html"];
|
|
}
|
|
}
|
|
} |