mirror of https://github.com/rocboss/paopao-ce
18 lines
329 B
18 lines
329 B
//go:build docs
|
|
// +build docs
|
|
|
|
package routers
|
|
|
|
import (
|
|
"github.com/alimy/cfg"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rocboss/paopao-ce/docs/openapi"
|
|
)
|
|
|
|
// registerDocs register docs asset route
|
|
func registerDocs(e *gin.Engine) {
|
|
cfg.Be("Docs:OpenAPI", func() {
|
|
e.StaticFS("/docs/openapi", openapi.NewFileSystem())
|
|
})
|
|
}
|