Last active
September 18, 2024 15:12
-
-
Save lucax88x/02c5bec1fe243073d6a80ed713bb0c3a to your computer and use it in GitHub Desktop.
switch ahi ahi
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
func handler(ctx context) { | |
dto := "sticazzi" | |
codeOnFailure := "anchetu" | |
switch report.Health { | |
case health.HealthHealthy: | |
case health.HealthDegraded: | |
ctx.JSON(http.StatusOK, dto) | |
case health.HealthUnhealthy: | |
ctx.JSON(codeOnFailure, dto) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment