windos环境下通过goland编译go项目 失败
操作截图:
本级go环境信息:
期望能把项目跑起来
windos环境下通过goland编译go项目 失败
操作截图:
package main
import "github.com/gin-gonic/gin"
func main() {
router := gin.Default()
router.GET("/", func(context *gin.Context) {
context.String(200,"值:%v","你好gin")
})
router.GET("/news", func(context *gin.Context) {
context.String(200,"我是新闻页面")
})
router.Run(":8000")
}