2024-07-23 14:48:37 +08:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
2024-08-07 13:52:34 +08:00
|
|
|
v2 "github.com/1Panel-dev/1Panel/agent/app/api/v2"
|
2024-07-23 14:48:37 +08:00
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LogRouter struct{}
|
|
|
|
|
|
|
|
func (s *LogRouter) InitRouter(Router *gin.RouterGroup) {
|
|
|
|
operationRouter := Router.Group("logs")
|
2024-08-07 13:52:34 +08:00
|
|
|
baseApi := v2.ApiGroupApp.BaseApi
|
2024-07-23 14:48:37 +08:00
|
|
|
{
|
|
|
|
operationRouter.GET("/system/files", baseApi.GetSystemFiles)
|
|
|
|
operationRouter.POST("/system", baseApi.GetSystemLogs)
|
2024-08-01 17:37:36 +08:00
|
|
|
operationRouter.POST("/tasks/search", baseApi.PageTasks)
|
2024-07-23 14:48:37 +08:00
|
|
|
}
|
|
|
|
}
|