2024-07-19 11:04:11 +00:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
2024-08-07 05:52:34 +00:00
|
|
|
v2 "github.com/1Panel-dev/1Panel/core/app/api/v2"
|
2024-07-19 11:04:11 +00:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LogRouter struct{}
|
|
|
|
|
|
|
|
func (s *LogRouter) InitRouter(Router *gin.RouterGroup) {
|
|
|
|
operationRouter := Router.Group("logs")
|
2024-08-07 05:52:34 +00:00
|
|
|
baseApi := v2.ApiGroupApp.BaseApi
|
2024-07-19 11:04:11 +00:00
|
|
|
{
|
|
|
|
operationRouter.POST("/login", baseApi.GetLoginLogs)
|
|
|
|
operationRouter.POST("/operation", baseApi.GetOperationLogs)
|
|
|
|
operationRouter.POST("/clean", baseApi.CleanLogs)
|
|
|
|
}
|
|
|
|
}
|