mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-13 11:11:58 +08:00
21 lines
602 B
Go
21 lines
602 B
Go
package router
|
|
|
|
import (
|
|
v2 "github.com/1Panel-dev/1Panel/core/app/api/v2"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type CommandRouter struct{}
|
|
|
|
func (s *CommandRouter) InitRouter(Router *gin.RouterGroup) {
|
|
commandRouter := Router.Group("commands")
|
|
baseApi := v2.ApiGroupApp.BaseApi
|
|
{
|
|
commandRouter.POST("/list", baseApi.ListCommand)
|
|
commandRouter.POST("", baseApi.CreateCommand)
|
|
commandRouter.POST("/del", baseApi.DeleteCommand)
|
|
commandRouter.POST("/search", baseApi.SearchCommand)
|
|
commandRouter.POST("/tree", baseApi.SearchCommandTree)
|
|
commandRouter.POST("/update", baseApi.UpdateCommand)
|
|
}
|
|
}
|