change api routerGroup to api package
This commit is contained in:
parent
f6ec10b1f4
commit
63e28b6020
15
router/routes/api/api.go
Normal file
15
router/routes/api/api.go
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
package api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"go-api/pkg/context"
|
||||||
|
"go-api/router/middleware"
|
||||||
|
|
||||||
|
"github.com/gin-gonic/gin"
|
||||||
|
)
|
||||||
|
|
||||||
|
var patch = context.PatchContext
|
||||||
|
|
||||||
|
// SetAPIRoute
|
||||||
|
func SetAPIRoute(r *gin.RouterGroup) {
|
||||||
|
r.Use(patch(middleware.ServerPanicCatch()))
|
||||||
|
}
|
@ -4,6 +4,7 @@ import (
|
|||||||
"go-api/pkg/context"
|
"go-api/pkg/context"
|
||||||
"go-api/router/controller"
|
"go-api/router/controller"
|
||||||
"go-api/router/middleware"
|
"go-api/router/middleware"
|
||||||
|
"go-api/router/routes/api"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
@ -37,6 +38,5 @@ func SetRoute(e *gin.Engine) {
|
|||||||
e.GET("/api-docs.json", middleware.SwaggerSpecServe())
|
e.GET("/api-docs.json", middleware.SwaggerSpecServe())
|
||||||
}
|
}
|
||||||
|
|
||||||
api := e.Group("/api", patch(middleware.ServerPanicCatch()))
|
api.SetAPIRoute(e.Group("/api"))
|
||||||
_ = api
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user