approveflow/app/http/route.go

28 lines
985 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package http
import (
"approveflow/app/http/module/flow_definition"
"approveflow/app/http/module/flow_instance"
"github.com/Superdanda/hade/framework/contract"
"github.com/Superdanda/hade/framework/gin"
ginSwagger "github.com/Superdanda/hade/framework/middleware/gin-swagger"
"github.com/Superdanda/hade/framework/middleware/gin-swagger/swaggerFiles"
"github.com/Superdanda/hade/framework/middleware/static"
)
func Routes(core *gin.Engine) {
container := core.GetContainer()
configService := container.MustMake(contract.ConfigKey).(contract.Config)
// 如果配置了swagger则显示swagger的中间件
if configService.GetBool("app.swagger") == true {
core.GET("/swagger/*any", ginSwagger.WrapHandler(swaggerFiles.Handler))
}
// /路径先去./dist目录下查找文件是否存在找到使用文件服务提供服务
core.Use(static.Serve("/", static.LocalFile("./dist", false)))
flow_definition.RegisterRoutes(core)
flow_instance.RegisterRoutes(core)
}