mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
First pass with RequestPlex
This commit is contained in:
parent
83848865e8
commit
a4f892b702
38 changed files with 8028 additions and 0 deletions
24
RequestPlex/RequestPlex.UI/Program.cs
Normal file
24
RequestPlex/RequestPlex.UI/Program.cs
Normal file
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
|
||||
using Microsoft.Owin.Hosting;
|
||||
|
||||
using Nancy.Hosting.Self;
|
||||
|
||||
namespace RequestPlex.UI
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var uri =
|
||||
"http://localhost:3579";
|
||||
|
||||
using (WebApp.Start<Startup>(uri))
|
||||
{
|
||||
Console.WriteLine("Running on {0}", uri);
|
||||
Console.WriteLine("Press enter to exit");
|
||||
Console.ReadLine();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue