1 Star 0 Fork 0

ichub/go-factroy2024

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
router.go 984 Bytes
一键复制 编辑 原始数据 按行查看 历史
leijmdas 提交于 2024-02-01 12:27 . add
package router
import (
"github.com/gin-gonic/gin"
"gitee.com/ichub/go-factroy2024/common/shop/controller"
"gitee.com/ichub/go-factroy2024/common/user/controller/auth"
"gitee.com/ichub/go-factroy2024/common/user/middleware"
)
func InitRouter() *gin.Engine {
route := gin.Default()
v1 := route.Group("/api/employee/v2")
v1.POST("/query", controller.InstEmployeeController.Query)
v1.GET("/findById", controller.InstEmployeeController.FindById)
v2 := route.Group("/api/auth/v2")
v2.POST("/api/auth/register", auth.Register)
v2.POST("/api/auth/login", auth.Login)
v2.GET("/api/auth/info", middleware.AuthMiddleware(), auth.Info)
v4 := route.Group("/goapi/service")
v4.GET("/e2e", controller.InstPrintController.Excel2Excel)
v4.POST("/e2e", controller.InstPrintController.Excel2Excel)
v4.GET("/p2p", controller.InstPrintController.Pdf2Pdf)
v4.POST("/p2p", controller.InstPrintController.Pdf2Pdf)
v4.GET("/pdf", controller.InstPrintController.Pdf)
return route
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ichub/go-factroy2024.git
git@gitee.com:ichub/go-factroy2024.git
ichub
go-factroy2024
go-factroy2024
v1.2.0

搜索帮助