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.
paopao-ce/internal/servants/servants.go

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.
2 years ago
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"
2 years ago
)
// 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)
})
}
2 years ago
}