mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-29 18:14:28 -04:00
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"];
|
|
}
|
|
}
|
|
} |