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.

123456789101112131415
  1. using System.Diagnostics.CodeAnalysis;
  2. namespace Diligent.WebAPI.Host.Extensions;
  3. [ExcludeFromCodeCoverage]
  4. public static class WebApp
  5. {
  6. [ExcludeFromCodeCoverage]
  7. public static void SetupData(this WebApplication app)
  8. {
  9. app.ConfigureCustomExceptionMiddleware();
  10. }
  11. }