gin
https://github.com/gin-gonic/gin#quick-start
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package main
import (
"github.com/gin-gonic/gin"
"net/http"
)
func main() {
router := gin.Default()
router.GET("/path0", func(c *gin.Context) {
firstname := c.DefaultQuery("params0", "Guest")
lastname := c.Query("params1") // shortcut for c.Request.URL.Query().Get("lastname")
c.String(http.StatusOK, "Hello %s %s", firstname, lastname)
})
router.Run(":8080")
}
|