Run go fmt
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Arsen Musayelyan 2023-01-28 21:08:35 -08:00
parent 657b562f31
commit 438304f8ce
2 changed files with 7 additions and 6 deletions

View File

@ -77,8 +77,10 @@ func allowAllCORSHandler(h http.Handler) http.Handler {
})
}
type acceptLanguageKey struct{}
type langParameterKey struct{}
type (
acceptLanguageKey struct{}
langParameterKey struct{}
)
func withAcceptLanguage(h http.Handler) http.Handler {
return http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) {
@ -86,10 +88,10 @@ func withAcceptLanguage(h http.Handler) http.Handler {
langs := req.Header.Get("Accept-Language")
ctx = context.WithValue(ctx, acceptLanguageKey{}, langs)
lang := req.URL.Query().Get("lang")
ctx = context.WithValue(ctx, langParameterKey{}, lang)
req = req.WithContext(ctx)
h.ServeHTTP(res, req)

View File

@ -1,13 +1,12 @@
package dlcache
import (
"crypto/sha1"
"encoding/hex"
"io"
"os"
"path/filepath"
"crypto/sha1"
"go.arsenm.dev/lure/internal/config"
)