package mainimport ( "net/http" "github.com/gin-gonic/gin")func main() { r := gin.Default() r.GET("/raw.json", func(c *gin.Context) { c.JSON(200, gin.H{ "msg": "hello word", }) }) // r.Run(":80") // Run("里面不指定端口号默认为8080")}