mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-06 21:21:13 -07:00
23 lines
413 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|