| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using Microsoft.Owin;
- using Owin;
- [assembly: OwinStartup(typeof(Winsoft.GOV.XF.WX.Startup))]
- namespace Winsoft.GOV.XF.WX
- {
- public partial class Startup
- {
- public void Configuration(IAppBuilder app)
- {
- ConfigureAuth(app);
- }
- }
- }
|