You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
300 B
21 lines
300 B
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func main() {
|
|
|
|
fmt.Println("hello 9")
|
|
//Default返回一个默认的路由引擎
|
|
r := gin.Default()
|
|
r.GET("/ping", func(c *gin.Context) {
|
|
//输出json结果给调用方
|
|
c.JSON(200, gin.H{
|
|
"message": "pong",
|
|
})
|
|
})
|
|
r.Run()
|
|
}
|