mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-22 19:19:18 -05:00
c284b4d07b
git-subtree-dir: ocis-pkg git-subtree-mainline:4c12bed11bgit-subtree-split:72d605ba38
13 lines
234 B
Go
13 lines
234 B
Go
package middleware
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/ascarter/requestid"
|
|
)
|
|
|
|
// RequestID is a convenient middleware to inject a request id.
|
|
func RequestID(next http.Handler) http.Handler {
|
|
return requestid.RequestIDHandler(next)
|
|
}
|