go语言 gin框架学习笔记(一)之 hello world


gin下载

go get github.com/gin-gonic/gin


代码展示
package main

import (
   "github.com/gin-gonic/gin"
   "net/http"
)

func main() {
   router :=gin.Default()
   router.GET("/", func(c *gin.Context) {
      c.String(http.StatusOK,"hello world")
   })
   router.Run(":1688")
}

界面展示

猜你喜欢

转载自blog.csdn.net/SeaLong_/article/details/88844028