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