mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
8 lines
182 B
Go
8 lines
182 B
Go
package index
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
// InitRouter registers all the index related routes
|
|
func InitRouter(r *gin.RouterGroup) {
|
|
r.GET("index/status", GetIndexStatus)
|
|
}
|