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.
75 lines
2.2 KiB
75 lines
2.2 KiB
// 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 (
|
|
"net/http"
|
|
|
|
"github.com/alimy/tryst/cfg"
|
|
"github.com/bufbuild/connect-go"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rocboss/paopao-ce/internal/servants/admin"
|
|
"github.com/rocboss/paopao-ce/internal/servants/bot"
|
|
"github.com/rocboss/paopao-ce/internal/servants/docs"
|
|
"github.com/rocboss/paopao-ce/internal/servants/localoss"
|
|
"github.com/rocboss/paopao-ce/internal/servants/mobile"
|
|
"github.com/rocboss/paopao-ce/internal/servants/space"
|
|
"github.com/rocboss/paopao-ce/internal/servants/statick"
|
|
"github.com/rocboss/paopao-ce/internal/servants/triplet"
|
|
"github.com/rocboss/paopao-ce/internal/servants/web"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// RegisterWebServants register all the servants to gin.Engine
|
|
func RegisterWebServants(e *gin.Engine) {
|
|
cfg.Be("Frontend:EmbedWeb", func() {
|
|
statick.RegisterWebStatick(e)
|
|
})
|
|
cfg.Be("LocalOSS", func() {
|
|
localoss.RouteLocalOSS(e)
|
|
})
|
|
web.RouteWeb(e)
|
|
}
|
|
|
|
// RegisterAdminServants register all the servants to gin.Engine
|
|
func RegisterAdminServants(e *gin.Engine) {
|
|
admin.RouteManager(e)
|
|
}
|
|
|
|
// RegisterSpaceXServants register all the servants to gin.Engine
|
|
func RegisterSpaceXServants(e *gin.Engine) {
|
|
space.RouteSpaceX(e)
|
|
}
|
|
|
|
// RegisterBotServants register all the servants to gin.Engine
|
|
func RegisterBotServants(e *gin.Engine) {
|
|
bot.RouteBot(e)
|
|
}
|
|
|
|
// RegisterLocalossServants register all the servants to gin.Engine
|
|
func RegisterLocalossServants(e *gin.Engine) {
|
|
localoss.RouteLocaloss(e)
|
|
}
|
|
|
|
// RegisterDocsServants register all the servants to gin.Engine
|
|
func RegisterDocsServants(e *gin.Engine) {
|
|
docs.RegisterDocs(e)
|
|
}
|
|
|
|
// RegisterFrontendWebServants register all the servants to gin.Engine
|
|
func RegisterFrontendWebServants(e *gin.Engine) {
|
|
statick.RegisterWebStatick(e)
|
|
}
|
|
|
|
// RegisterMobileServants register all the servants to grpc.Server
|
|
func RegisterMobileServants(s *grpc.Server) {
|
|
mobile.RegisterServants(s)
|
|
}
|
|
|
|
// RegisterTripletServants register all the servants to Connect
|
|
func RegisterTripletServants(h func(string, http.Handler), opts ...connect.HandlerOption) {
|
|
triplet.RegisterAuthenticateHandler(h, opts...)
|
|
}
|