mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-15 20:20:11 +08:00
19 lines
482 B
Go
19 lines
482 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 *TerminalRouter) 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)
|
|
}
|
|
}
|