mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-14 16:49:34 +08:00
19 lines
396 B
Go
19 lines
396 B
Go
package router
|
|
|
|
import (
|
|
v1 "github.com/1Panel-dev/1Panel/agent/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)
|
|
}
|
|
}
|