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