demo20230512/Startup.cs

14 lines
259 B
C#
Raw Permalink Normal View History

2023-05-12 10:20:28 +08:00
using Microsoft.Owin;
using Owin;
[assembly: OwinStartupAttribute(typeof(Weee.Startup))]
namespace Weee
{
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
ConfigureAuth(app);
}
}
}