mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-12 23:49:18 +08:00
17 lines
329 B
Go
17 lines
329 B
Go
package router
|
|
|
|
import (
|
|
v2 "github.com/1Panel-dev/1Panel/agent/app/api/v2"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type TerminalRouter struct{}
|
|
|
|
func (s *TerminalRouter) InitRouter(Router *gin.RouterGroup) {
|
|
terminalRouter := Router.Group("terminals")
|
|
baseApi := v2.ApiGroupApp.BaseApi
|
|
{
|
|
terminalRouter.GET("", baseApi.WsSsh)
|
|
}
|
|
}
|