mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
10 lines
144 B
Go
10 lines
144 B
Go
package gateway
|
|
|
|
import (
|
|
"net/http/httputil"
|
|
)
|
|
|
|
func NewNoopProxy() (*httputil.ReverseProxy, error) {
|
|
return &httputil.ReverseProxy{}, nil
|
|
}
|