diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-23 12:02:14 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-23 12:02:14 +0800 |
commit | 2a909b0888a485d619af20b30f21fe31f0de8f6d (patch) | |
tree | f7ad1fed2e5bef55ff9e38bcd106c6a2f0fa497d /main.go | |
parent | Separate validateBitZeros into a separate file (diff) | |
download | powxy-2a909b0888a485d619af20b30f21fe31f0de8f6d.tar.gz powxy-2a909b0888a485d619af20b30f21fe31f0de8f6d.tar.zst powxy-2a909b0888a485d619af20b30f21fe31f0de8f6d.zip |
Separate unsafe operations to unsafe.go
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -15,7 +15,6 @@ import ( "net/url" "strings" "time" - "unsafe" ) var ( @@ -193,7 +192,3 @@ func makeSignedToken(request *http.Request) []byte { func proxyRequest(writer http.ResponseWriter, request *http.Request) { reverseProxy.ServeHTTP(writer, request) } - -func stringToBytes(s string) (bytes []byte) { - return unsafe.Slice(unsafe.StringData(s), len(s)) -} |