1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-26 03:52:12 +02:00

30 lines
491 B
Go
Raw Normal View History

2021-03-05 23:49:25 +08:00
package main
import (
"log"
"github.com/gin-gonic/gin"
"github.com/go-kratos/kratos/v2"
"github.com/go-kratos/kratos/v2/transport/http"
2021-03-05 23:49:25 +08:00
)
func main() {
router := gin.Default()
router.GET("/home", func(ctx *gin.Context) {
ctx.String(200, "Hello Gin!")
})
httpSrv := http.NewServer(http.Address(":8000"))
2021-03-05 23:49:25 +08:00
httpSrv.HandlePrefix("/", router)
app := kratos.New(
kratos.Name("gin"),
kratos.Server(
httpSrv,
),
)
if err := app.Run(); err != nil {
log.Println(err)
}
}