1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-02-05 13:15:11 +02:00
Tony Chen 5a8acec808
examples: fix dir structure (#768)
* fix dir structure
2021-03-15 17:10:32 +08:00

29 lines
490 B
Go

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