mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 09:03:49 -07:00
13 lines
No EOL
248 B
C#
13 lines
No EOL
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"];
|
|
}
|
|
}
|
|
} |