mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-28 21:39:06 +08:00
20 lines
478 B
Go
20 lines
478 B
Go
package router
|
|
|
|
import (
|
|
v1 "github.com/1Panel-dev/1Panel/app/api/v1"
|
|
"github.com/1Panel-dev/1Panel/middleware"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type TerminalRouter struct{}
|
|
|
|
func (s *UserRouter) InitTerminalRouter(Router *gin.RouterGroup) {
|
|
terminalRouter := Router.Group("terminals").Use(middleware.JwtAuth()).Use(middleware.SessionAuth())
|
|
baseApi := v1.ApiGroupApp.BaseApi
|
|
{
|
|
terminalRouter.GET("", baseApi.WsSsh)
|
|
terminalRouter.GET("/local", baseApi.LocalWsSsh)
|
|
}
|
|
}
|