mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 02:45:49 +02:00
9 lines
204 B
Go
9 lines
204 B
Go
package nginx_log
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func InitRouter(r *gin.RouterGroup) {
|
|
r.GET("nginx_log", Log)
|
|
r.GET("nginx_logs", GetLogList)
|
|
r.GET("nginx_logs/index_status", GetNginxLogsLive)
|
|
}
|