hub.go 187 B

1234567891011
  1. package middleware
  2. import (
  3. "kpt-tmr-group/module/backend"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func BackendOperation(c *gin.Context) *backend.Hub {
  7. return &(Dependency(c).StoreEventHub)
  8. }