mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 11:38:32 -07:00
17 lines
282 B
C#
17 lines
282 B
C#
using Owin;
|
|
|
|
using RequestPlex.Core;
|
|
|
|
namespace RequestPlex.UI
|
|
{
|
|
public class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app)
|
|
{
|
|
app.UseNancy();
|
|
|
|
var s = new Setup();
|
|
s.SetupDb();
|
|
}
|
|
}
|
|
}
|