mirror of
https://github.com/router-for-me/CLIProxyAPIPlus.git
synced 2026-03-09 15:25:17 +00:00
13 lines
288 B
Go
13 lines
288 B
Go
package executor
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/router-for-me/CLIProxyAPI/v6/internal/misc"
|
|
)
|
|
|
|
// scrubProxyAndFingerprintHeaders delegates to the shared utility in internal/misc.
|
|
func scrubProxyAndFingerprintHeaders(req *http.Request) {
|
|
misc.ScrubProxyAndFingerprintHeaders(req)
|
|
}
|