mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-06 22:12:23 +08:00
12 lines
215 B
Go
12 lines
215 B
Go
package pages
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// InitRouter initializes the pages routes
|
|
func InitRouter(r *gin.Engine) {
|
|
// Register maintenance page route
|
|
r.GET("/pages/maintenance", MaintenancePage)
|
|
}
|