Skip to content

Commit

Permalink
Fixed missing Health check endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jezzsantos committed Jan 27, 2025
1 parent c5681c1 commit 589a841
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/ApiHost1/ApiHostModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,7 @@ public class ApiHostModule : ISubdomainModule
{
public Action<WebApplication, List<MiddlewareRegistration>> ConfigureMiddleware
{
get
{
return (_, _) =>
{
// Add you host specific middleware here
};
}
get { return (app, _) => app.RegisterRoutes(); }
}

public Assembly? DomainAssembly => null;
Expand Down

0 comments on commit 589a841

Please sign in to comment.