Skip to content

Instantly share code, notes, and snippets.

@lucax88x
Last active September 18, 2024 15:12
Show Gist options
  • Save lucax88x/02c5bec1fe243073d6a80ed713bb0c3a to your computer and use it in GitHub Desktop.
Save lucax88x/02c5bec1fe243073d6a80ed713bb0c3a to your computer and use it in GitHub Desktop.
switch ahi ahi
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