router.go 171 B

12345678
  1. package event
  2. import "github.com/gin-gonic/gin"
  3. // InitRouter registers the WebSocket event bus route
  4. func InitRouter(r *gin.RouterGroup) {
  5. r.GET("events", EventBus)
  6. }