New upstream version 1.2.0

This commit is contained in:
Sébastien Delafond
2018-01-03 12:07:20 +01:00
parent 3cbca50cad
commit f6225c4983
1486 changed files with 382952 additions and 136232 deletions
+4 -3
View File
@@ -2,6 +2,7 @@ package hello
import (
"net/http"
"github.com/gin-gonic/gin"
)
@@ -11,13 +12,13 @@ func init() {
r := gin.New()
// Define your handlers
r.GET("/", func(c *gin.Context){
r.GET("/", func(c *gin.Context) {
c.String(200, "Hello World!")
})
r.GET("/ping", func(c *gin.Context){
r.GET("/ping", func(c *gin.Context) {
c.String(200, "pong")
})
// Handle all requests using net/http
http.Handle("/", r)
}
}