1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-10-02 13:10:35 +02: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);
}
}
}