go-micro-demo/handler/hello-handler.go

11 lines
183 B
Go

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",
})
}