debug.go 146 B

12345678910
  1. package debug
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "net/http"
  5. )
  6. func HelloOk(c *gin.Context) {
  7. c.JSON(http.StatusOK, gin.H{"result": "ok"})
  8. }