15 lines
272 B
C#
15 lines
272 B
C#
using Microsoft.Owin;
|
|
using Owin;
|
|
|
|
[assembly: OwinStartupAttribute(typeof(Chruch.Net.Startup))]
|
|
namespace Chruch.Net
|
|
{
|
|
public partial class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app)
|
|
{
|
|
ConfigureAuth(app);
|
|
}
|
|
}
|
|
}
|