* feat: change x-trace-id to traceparent to follow opentelemetry * feat: add rest/httpc to make http requests governacible * chore: remove blank lines
9 lines
156 B
Go
9 lines
156 B
Go
package internal
|
|
|
|
import "net/http"
|
|
|
|
type (
|
|
Interceptor func(r *http.Request) (*http.Request, ResponseHandler)
|
|
ResponseHandler func(*http.Response)
|
|
)
|