mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-12 23:49:18 +08:00
19 lines
454 B
Go
19 lines
454 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)
|
|
}
|
|
}
|