You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
835 B

2 years ago
package main
import (
2 years ago
"fmt"
"git.diulo.com/mogfee/protoc-gen-kit/example/service"
"git.diulo.com/mogfee/protoc-gen-kit/middleware"
2 years ago
"git.diulo.com/mogfee/protoc-gen-kit/pkg/xjson"
2 years ago
user "git.diulo.com/mogfee/protoc-gen-kit/proto/v1"
2 years ago
"github.com/gin-gonic/gin"
2 years ago
"github.com/sirupsen/logrus"
"os"
2 years ago
)
func main() {
2 years ago
gin.SetMode(gin.ReleaseMode)
2 years ago
app := gin.Default()
srv := service.UserService{}
2 years ago
l := logrus.New()
f, err := os.Create("./app.log")
if err != nil {
panic(err)
}
defer f.Close()
l.SetOutput(f)
l.SetFormatter(&logrus.JSONFormatter{})
l.SetReportCaller(false)
app.GET("/user/:name", func(c *gin.Context) {
xjson.PrintData(c.FullPath())
2 years ago
})
2 years ago
user.RegisterUserHandler(app, &srv, middleware.Logger("user-server", l), middleware.Validate())
2 years ago
fmt.Println("http://localhost:8888")
2 years ago
app.Run("localhost:8888")
}