Ombi/RequestPlex.UI/Startup.cs
2016-02-29 14:20:30 +00:00

23 lines
413 B
C#

using System;
using Owin;
namespace RequestPlex.UI
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
try
{
app.UseNancy();
}
catch (Exception exception)
{
Console.WriteLine(exception.Message);
throw;
}
}
}
}