Startup.cs 363 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using Microsoft.Owin;
  5. using Owin;
  6. [assembly: OwinStartup(typeof(Winsoft.GOV.XF.WX.Startup))]
  7. namespace Winsoft.GOV.XF.WX
  8. {
  9. public partial class Startup
  10. {
  11. public void Configuration(IAppBuilder app)
  12. {
  13. ConfigureAuth(app);
  14. }
  15. }
  16. }