2019-05-04 12:13:50 +02:00
|
|
|
|
using Microsoft.Owin;
|
|
|
|
|
using Owin;
|
|
|
|
|
|
|
|
|
|
[assembly: OwinStartupAttribute(typeof(MovieBase.Startup))]
|
|
|
|
|
namespace MovieBase
|
|
|
|
|
{
|
2019-05-29 21:33:34 +02:00
|
|
|
|
public partial class Startup
|
|
|
|
|
{
|
|
|
|
|
public void Configuration(IAppBuilder app)
|
|
|
|
|
{
|
|
|
|
|
ConfigureAuth(app);
|
|
|
|
|
}
|
2019-05-19 19:48:41 +02:00
|
|
|
|
|
2019-05-29 21:33:34 +02:00
|
|
|
|
}
|
2019-05-04 12:13:50 +02:00
|
|
|
|
}
|