Go的HTTPWeb框架GinWebFramework.zip
Gin是一个用Go语言开发的Web框架,提供类Martini的API,但是性能更好。因为有了httprouter性能提升了40倍之多。$ cat test.gopackage mainimport ( "net/http" "github.com/gin-gonic/gin")func main() { router := gin.Default() router.GET("/", func(c *gin.Context) { c.String(http.StatusOK, "hello w
下载地址
用户评论