mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-09 16:29:29 +00:00
11 lines
167 B
Go
11 lines
167 B
Go
package core
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func httpServerHeaderMiddleware(ctx *gin.Context) {
|
|
ctx.Writer.Header().Set("Server", "mediamtx")
|
|
ctx.Next()
|
|
}
|