mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 05:31:13 -07:00
13 lines
No EOL
278 B
C#
13 lines
No EOL
278 B
C#
using Nancy;
|
|
|
|
namespace RequestPlex.UI.Modules
|
|
{
|
|
public class IndexModule : NancyModule
|
|
{
|
|
public IndexModule()
|
|
{
|
|
Get["/"] = parameters => View["Index"];
|
|
Get["/Index"] = parameters => View["Index"];
|
|
}
|
|
}
|
|
} |