码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2019-12-25 16:10:25      阅读:110      评论:0      收藏:0      [点我收藏+]

标签: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()
}




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

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

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

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