Projekt/Book_club/Startup.cs
2019-06-01 12:34:27 +02:00

15 lines
284 B
C#

using Microsoft.Owin;
using Owin;
[assembly: OwinStartupAttribute(typeof(Book_club.Startup))]
namespace Book_club
{
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
ConfigureAuth(app);
}
}
}