mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 21:51:13 -07:00
24 lines
510 B
C#
24 lines
510 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
}
|