mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-12 23:49:18 +08:00
19 lines
383 B
Go
19 lines
383 B
Go
package router
|
|
|
|
import (
|
|
v2 "github.com/1Panel-dev/1Panel/agent/app/api/v2"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type ProcessRouter struct {
|
|
}
|
|
|
|
func (f *ProcessRouter) InitRouter(Router *gin.RouterGroup) {
|
|
processRouter := Router.Group("process")
|
|
baseApi := v2.ApiGroupApp.BaseApi
|
|
{
|
|
processRouter.GET("/ws", baseApi.ProcessWs)
|
|
processRouter.POST("/stop", baseApi.StopProcess)
|
|
}
|
|
}
|