2.引进外部框架gin生成web API

2021-01-22 02:11

阅读:787

标签:one   star   一个   sha   port   tps   out   hand   http   

技术图片

package main

import (
    "github.com/gin-gonic/gin"
    "github.com/micro/go-micro/web"
)

func main() {
    ginRouter := gin.Default()
    ginRouter.Handle("GET", "/user", func(context *gin.Context) {
        context.String(200, "user api")
    })
    ginRouter.Handle("GET", "/news", func(context *gin.Context) {
        context.String(200, "news api")
    })
    server := web.NewService(
        web.Address(":8001"),
        web.Handler(ginRouter), //web.Handler()返回一个Option,我们直接把ginRouter穿进去,就可以和gin完美的结合
    )
    server.Run()
}


来自为知笔记(Wiz)


2.引进外部框架gin生成web API

标签:one   star   一个   sha   port   tps   out   hand   http   

原文地址:https://www.cnblogs.com/hualou/p/12096769.html


评论


亲,登录后才可以留言!