1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 08:19:15 +08:00
1Panel/agent/router/ro_log.go

20 lines
531 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package router
import (
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")
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)
operationRouter.GET("/tasks/executing/count", baseApi.CountExecutingTasks)
2024-07-23 14:48:37 +08:00
}
}