1Panel/backend/router/ro_log.go

19 lines
398 B
Go
Raw Normal View History

2022-08-16 15:30:23 +00:00
package router
import (
v1 "github.com/1Panel-dev/1Panel/backend/app/api/v1"
2022-08-16 15:30:23 +00:00
"github.com/gin-gonic/gin"
)
2022-11-15 09:20:57 +00:00
type LogRouter struct{}
2022-08-16 15:30:23 +00:00
func (s *LogRouter) InitRouter(Router *gin.RouterGroup) {
2022-11-15 09:20:57 +00:00
operationRouter := Router.Group("logs")
2022-08-16 15:30:23 +00:00
baseApi := v1.ApiGroupApp.BaseApi
{
operationRouter.GET("/system/files", baseApi.GetSystemFiles)
operationRouter.POST("/system", baseApi.GetSystemLogs)
2022-08-16 15:30:23 +00:00
}
}