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