1Panel/backend/router/ro_log.go
ssongliu 9cdc4a7303
Some checks failed
sync2gitee / repo-sync (push) Failing after -6m54s
feat: agent 功能代码拆分
2024-07-22 16:14:59 +08:00

18 lines
398 B
Go

package router
import (
v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
"github.com/gin-gonic/gin"
)
type LogRouter struct{}
func (s *LogRouter) InitRouter(Router *gin.RouterGroup) {
operationRouter := Router.Group("logs")
baseApi := v1.ApiGroupApp.BaseApi
{
operationRouter.GET("/system/files", baseApi.GetSystemFiles)
operationRouter.POST("/system", baseApi.GetSystemLogs)
}
}