mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
9 lines
209 B
Go
9 lines
209 B
Go
package nginx_log
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
// InitRouter registers all the nginx log related routes
|
|
func InitRouter(r *gin.RouterGroup) {
|
|
r.GET("nginx_log", Log)
|
|
r.GET("nginx_logs", GetLogList)
|
|
}
|