标签: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()
}
标签:one star 一个 sha port tps out hand http
原文地址:https://www.cnblogs.com/hualou/p/12096769.html