TFS_ANTIGUO/SIGPC/App_Code/Startup.cs

14 lines
272 B
C#
Raw Normal View History

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