()
| 13 | } |
| 14 | |
| 15 | func (controller *HealthController) SetupRoutes() { |
| 16 | controller.router.GET("/healthz", controller.healthHandler) |
| 17 | controller.router.HEAD("/healthz", controller.healthHandler) |
| 18 | } |
| 19 | |
| 20 | func (controller *HealthController) healthHandler(c *gin.Context) { |
| 21 | c.JSON(200, gin.H{ |
no outgoing calls