mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 16:39:50 +00:00
13 lines
248 B
Go
13 lines
248 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// Broker handles connections to the embedded message broker.
|
|
func Broker(c *gin.Context) {
|
|
broker := c.MustGet("broker").(http.Handler)
|
|
broker.ServeHTTP(c.Writer, c.Request)
|
|
}
|