Files
hamster-tycoon/handlers/health_handler.go
2020-01-05 23:20:38 +01:00

13 lines
201 B
Go
Executable File

package handlers
import (
"hamster-tycoon/utils"
"net/http"
"github.com/gin-gonic/gin"
)
func (hc *handlersContext) GetHealth(c *gin.Context) {
utils.JSON(c.Writer, http.StatusNoContent, nil)
}