mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-06-01 17:10:57 +08:00
9 lines
166 B
Go
9 lines
166 B
Go
package event
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
// InitRouter registers the WebSocket event bus route
|
|
func InitRouter(r *gin.RouterGroup) {
|
|
r.GET("events", Bus)
|
|
}
|