1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-11-25 16:00:27 +01:00
RSystem-MVC-Fork/RSystem/Startup.cs
2018-04-17 11:20:49 +02:00

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);
}
}
}