17 lines
335 B
Go
17 lines
335 B
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"hy2xs-admin/controller"
|
|
)
|
|
|
|
func initLogRouter(accountApi *gin.RouterGroup) {
|
|
account := accountApi.Group("/log")
|
|
{
|
|
account.GET("/logSystem", controller.LogSystem)
|
|
account.GET("/logHysteria2", controller.LogHysteria2)
|
|
account.POST("/exportLog", controller.ExportLog)
|
|
}
|
|
}
|
|
|