| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package cmd
- import (
- "context"
- "github.com/gogf/gf/v2/frame/g"
- "github.com/gogf/gf/v2/net/ghttp"
- "github.com/gogf/gf/v2/os/gcmd"
- "github.com/gogf/gf/v2/protocol/goai"
- consts "github.com/tiger1103/gfast/v3/internal/const"
- "github.com/tiger1103/gfast/v3/internal/router"
- )
- var (
- Main = gcmd.Command{
- Name: "main",
- Usage: "main",
- Brief: "start http server",
- Func: func(ctx context.Context, parser *gcmd.Parser) (err error) {
- s := g.Server()
- s.Group("/", func(group *ghttp.RouterGroup) {
- group.Middleware(ghttp.MiddlewareHandlerResponse)
- router.BindController(group)
- })
- enhanceOpenAPIDoc(s)
- s.Run()
- return nil
- },
- }
- )
- func enhanceOpenAPIDoc(s *ghttp.Server) {
- openapi := s.GetOpenApi()
- openapi.Config.CommonResponse = ghttp.DefaultHandlerResponse{}
- openapi.Config.CommonResponseDataField = `Data`
- // API description.
- openapi.Info = goai.Info{
- Title: consts.OpenAPITitle,
- Description: consts.OpenAPIDescription,
- Contact: &goai.Contact{
- Name: consts.OpenAPIContactName,
- URL: consts.OpenAPIContactUrl,
- },
- }
- }
|