mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 22:18:07 +08:00
18 lines
330 B
Go
18 lines
330 B
Go
|
package router
|
||
|
|
||
|
import (
|
||
|
v1 "github.com/1Panel-dev/1Panel/agent/app/api/v1"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
type TerminalRouter struct{}
|
||
|
|
||
|
func (s *TerminalRouter) InitRouter(Router *gin.RouterGroup) {
|
||
|
terminalRouter := Router.Group("terminals")
|
||
|
baseApi := v1.ApiGroupApp.BaseApi
|
||
|
{
|
||
|
terminalRouter.GET("", baseApi.WsSsh)
|
||
|
}
|
||
|
}
|