mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
11 lines
215 B
Go
11 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)
|
|
}
|