mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
763 B
31 lines
763 B
// Copyright 2022 ROC. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package servants
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rocboss/paopao-ce/internal/servants/docs"
|
|
"github.com/rocboss/paopao-ce/internal/servants/localoss"
|
|
"github.com/rocboss/paopao-ce/internal/servants/statick"
|
|
"github.com/rocboss/paopao-ce/internal/servants/web"
|
|
"github.com/rocboss/paopao-ce/pkg/cfg"
|
|
)
|
|
|
|
// RegisterWebServants register all the servants to gin.Engine
|
|
func RegisterWebServants(e *gin.Engine) {
|
|
// 按需注册 docs、静态资源
|
|
{
|
|
docs.RegisterDocs(e)
|
|
statick.RegisterStatick(e)
|
|
}
|
|
|
|
web.RouteWeb(e)
|
|
{
|
|
cfg.Be("LocalOSS", func() {
|
|
localoss.RouteLocalOSS(e)
|
|
})
|
|
}
|
|
}
|