mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-19 08:19:15 +08:00
20 lines
531 B
Go
20 lines
531 B
Go
package router
|
|
|
|
import (
|
|
v2 "github.com/1Panel-dev/1Panel/agent/app/api/v2"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type LogRouter struct{}
|
|
|
|
func (s *LogRouter) InitRouter(Router *gin.RouterGroup) {
|
|
operationRouter := Router.Group("logs")
|
|
baseApi := v2.ApiGroupApp.BaseApi
|
|
{
|
|
operationRouter.GET("/system/files", baseApi.GetSystemFiles)
|
|
operationRouter.POST("/system", baseApi.GetSystemLogs)
|
|
operationRouter.POST("/tasks/search", baseApi.PageTasks)
|
|
operationRouter.GET("/tasks/executing/count", baseApi.CountExecutingTasks)
|
|
}
|
|
}
|