Add project files.

This commit is contained in:
2019-01-15 20:47:39 +01:00
parent cae950cec6
commit c7d11d8b4c
78 changed files with 38926 additions and 0 deletions

14
Vidly/Startup.cs Normal file
View File

@ -0,0 +1,14 @@
using Microsoft.Owin;
using Owin;
[assembly: OwinStartupAttribute(typeof(Vidly.Startup))]
namespace Vidly
{
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
ConfigureAuth(app);
}
}
}