Gin,一个小而轻,go语言实现的web框架,相当于python里的flask框架。他们的共同点都是小而轻,大而全的框架是beego,相当于python的django框架。
官方地址:https://github.com/gin-gonic/gin
gin-hello world
package main
import(
"net/http"
"github.com/gin-gonic/gin"
)
func Pong(c *gin.Context)
Gin,一个小而轻,go语言实现的web框架,相当于python里的flask框架。他们的共同点都是小而轻,大而全的框架是beego,相当于python的django框架。
官方地址:https://github.com/gin-gonic/gin
gin-hello world
package main
import(
"net/http"
"github.com/gin-gonic/gin"
)
func Pong(c *gin.Context)