You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
271 B

  1. using Microsoft.Owin;
  2. using Owin;
  3. [assembly: OwinStartup(typeof(ThirdPartyAPIs.Startup))]
  4. namespace ThirdPartyAPIs
  5. {
  6. public partial class Startup
  7. {
  8. public void Configuration(IAppBuilder app)
  9. {
  10. ConfigureAuth(app);
  11. }
  12. }
  13. }