mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-30 23:49:10 +08:00
20 lines
443 B
Go
20 lines
443 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")
|
||
|
withRecordRouter := terminalRouter.Use(middleware.OperationRecord())
|
||
|
baseApi := v1.ApiGroupApp.BaseApi
|
||
|
{
|
||
|
withRecordRouter.GET("", baseApi.WsSsh)
|
||
|
}
|
||
|
}
|