TFS_ANTIGUO/SIGPC/ProyectoSIGPC/App_Code/Startup.cs
kledezma 7fdadc4709 KLB
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C519
2021-01-22 15:05:35 +00:00

13 lines
272 B
C#

using Microsoft.Owin;
using Owin;
[assembly: OwinStartupAttribute(typeof(localhost.Startup))]
namespace localhost
{
public partial class Startup {
public void Configuration(IAppBuilder app) {
ConfigureAuth(app);
}
}
}