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