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
294 B

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