-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7462399
commit 2f837c7
Showing
10 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
Binary file modified
BIN
+112 Bytes
(100%)
src/api-gateways/DevStore.Bff.Checkout/Configuration/ApiConfig.cs
Binary file not shown.
18 changes: 18 additions & 0 deletions
18
src/building-blocks/DevStore.WebAPI.Core/Configuration/GenericHealthCheck.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using Microsoft.AspNetCore.Builder; | ||
using Microsoft.Extensions.DependencyInjection; | ||
|
||
namespace DevStore.WebAPI.Core.Configuration | ||
{ | ||
public static class GenericHealthCheck | ||
{ | ||
public static void AddGenericHealthCheck(this IServiceCollection services) | ||
{ | ||
services.AddHealthChecks(); | ||
} | ||
|
||
public static void UseGenericHealthCheck(this WebApplication app, string path) | ||
{ | ||
app.MapHealthChecks(path); | ||
} | ||
} | ||
} |
Binary file modified
BIN
+112 Bytes
(100%)
src/services/DevStore.Billing.API/Configuration/ApiConfig.cs
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+112 Bytes
(100%)
src/services/DevStore.Catalog.API/Configuration/ApiConfig.cs
Binary file not shown.
Binary file modified
BIN
+112 Bytes
(100%)
src/services/DevStore.Customers.API/Configuration/ApiConfig.cs
Binary file not shown.
Binary file modified
BIN
+282 Bytes
(110%)
src/services/DevStore.Identity.API/Configuration/ApiConfig.cs
Binary file not shown.
Binary file modified
BIN
+112 Bytes
(100%)
src/services/DevStore.Orders.API/Configuration/ApiConfig.cs
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.