mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 07:22:35 -07:00
15 lines
No EOL
363 B
C#
15 lines
No EOL
363 B
C#
using Nancy;
|
|
using Nancy.Extensions;
|
|
using Nancy.Responses;
|
|
|
|
namespace RequestPlex.UI.Modules
|
|
{
|
|
public class IndexModule : NancyModule
|
|
{
|
|
public IndexModule()
|
|
{
|
|
Get["/"] = parameters => Context.GetRedirect("~/search");
|
|
Get["/Index"] = parameters => Context.GetRedirect("~/search");
|
|
}
|
|
}
|
|
} |