mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
Using the IoC container now
This commit is contained in:
parent
bee57b46ff
commit
6fd1e3ba32
27 changed files with 636 additions and 88 deletions
|
@ -1,4 +1,6 @@
|
|||
using Owin;
|
||||
using System;
|
||||
|
||||
using Owin;
|
||||
|
||||
namespace RequestPlex.UI
|
||||
{
|
||||
|
@ -6,7 +8,16 @@ namespace RequestPlex.UI
|
|||
{
|
||||
public void Configuration(IAppBuilder app)
|
||||
{
|
||||
try
|
||||
{
|
||||
app.UseNancy();
|
||||
}
|
||||
catch (Exception exception)
|
||||
{
|
||||
Console.WriteLine(exception.Message);
|
||||
throw;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue