mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-29 23:09:10 +08:00
22 lines
476 B
Go
22 lines
476 B
Go
|
package router
|
||
|
|
||
|
import (
|
||
|
v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
|
||
|
"github.com/1Panel-dev/1Panel/backend/middleware"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
type WebsiteSSLRouter struct {
|
||
|
}
|
||
|
|
||
|
func (a *WebsiteSSLRouter) InitWebsiteSSLRouter(Router *gin.RouterGroup) {
|
||
|
groupRouter := Router.Group("websites/ssl")
|
||
|
groupRouter.Use(middleware.JwtAuth()).Use(middleware.SessionAuth())
|
||
|
|
||
|
baseApi := v1.ApiGroupApp.BaseApi
|
||
|
{
|
||
|
groupRouter.POST("", baseApi.PageWebsiteSSL)
|
||
|
|
||
|
}
|
||
|
}
|