mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
12 lines
193 B
C#
12 lines
193 B
C#
using Owin;
|
|
|
|
namespace RequestPlex.UI
|
|
{
|
|
public class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app)
|
|
{
|
|
app.UseNancy();
|
|
}
|
|
}
|
|
}
|