码迷,mamicode.com
首页 > 其他好文 > 详细

gin入门

时间:2020-03-28 23:49:11      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:res   main   ESS   参考   func   contex   route   tps   http   

Gin is a web framework written in Go (Golang). It features a martini-like API with performance that is up to 40 times faster thanks to httprouter.

github:https://gitee.com/yuxio/gin.git

package main

import "github.com/gin-gonic/gin"

func main() {
    r := gin.Default()
    r.GET("/ping", func(c *gin.Context) {
        c.JSON(200, gin.H{
            "message": "pong",
        })
    })
    r.Run() // listen and serve on 0.0.0.0:8080 (for windows "localhost:8080")
}

 

 

参考:

1. golang轻量级框架-Gin入门

2. Gin实践 连载八 为它加上Swagger

3. Gin 教程

gin入门

标签:res   main   ESS   参考   func   contex   route   tps   http   

原文地址:https://www.cnblogs.com/embedded-linux/p/12589978.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!