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