Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 717c215

Browse files
refactor: Made HealthCheckFunction class static
1 parent 563de27 commit 717c215

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceLayer.Mesh/Functions/HealthCheckFunction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
namespace ServiceLayer.Mesh.Functions;
66

7-
public class HealthCheckFunction
7+
public static class HealthCheckFunction
88
{
9-
[Function("HealthCheck")]
9+
[Function("HealthCheckFunction")]
1010
public static HttpResponseData Run([HttpTrigger(AuthorizationLevel.Anonymous, "get", Route = "health")] HttpRequestData req)
1111
{
1212
return req.CreateResponse(HttpStatusCode.OK);

0 commit comments

Comments
 (0)