package handler
import "github.com/gin-gonic/gin"
func HelloWorld(c *gin.Context) {
c.Header("Content-Type", "application/json")
c.JSON(200, gin.H{
"data": "hello world",
})
}