mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 14:08:06 +08:00
19 lines
379 B
Go
19 lines
379 B
Go
package router
|
|
|
|
import (
|
|
v1 "github.com/1Panel-dev/1Panel/app/api/v1"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type TerminalRouter struct{}
|
|
|
|
func (s *UserRouter) InitTerminalRouter(Router *gin.RouterGroup) {
|
|
terminalRouter := Router.Group("terminals")
|
|
baseApi := v1.ApiGroupApp.BaseApi
|
|
{
|
|
terminalRouter.GET("", baseApi.WsSsh)
|
|
terminalRouter.GET("/local", baseApi.LocalWsSsh)
|
|
}
|
|
}
|