go语言 gin框架学习笔记(一)之 hello world

gin下载 go get github.com/gin-gonic/gin 代码展示 package main import ( "github.com/gin-gonic/gin" "net/http" ) func main() { router :=gin.Default() router.GET("/", func(c *gin.Context) {
相关文章
相关标签/搜索