mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-11-25 16:00:27 +01:00
15 lines
266 B
C#
15 lines
266 B
C#
using Microsoft.Owin;
|
|
using Owin;
|
|
|
|
[assembly: OwinStartupAttribute(typeof(RSystem.Startup))]
|
|
namespace RSystem
|
|
{
|
|
public partial class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app)
|
|
{
|
|
ConfigureAuth(app);
|
|
}
|
|
}
|
|
}
|