mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 19:26:02 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			478 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			478 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").Use(middleware.JwtAuth()).Use(middleware.SessionAuth())
 | |
| 	baseApi := v1.ApiGroupApp.BaseApi
 | |
| 	{
 | |
| 		terminalRouter.GET("", baseApi.WsSsh)
 | |
| 		terminalRouter.GET("/local", baseApi.LocalWsSsh)
 | |
| 	}
 | |
| }
 |