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.

20 lines
497 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. package main
  2. // 导入gin包
  3. import "github.com/gin-gonic/gin"
  4. // 入口函数
  5. func main() {
  6. // 初始化一个http服务对象
  7. r := gin.Default()
  8. // 设置一个get请求的路由,url为/ping, 处理函数(或者叫控制器函数)是一个闭包函数。
  9. r.GET("/", func(c *gin.Context) {
  10. // 通过请求上下文对象Context, 直接往客户端返回一个json
  11. c.JSON(200, gin.H{
  12. "message": "pong1",
  13. })
  14. })
  15. r.Run(":8080") // 监听并在 0.0.0.0:8080 上启动服务
  16. }