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

This commit is contained in:
Elara 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 (
type langParameterKey struct{} acceptLanguageKey struct{}
langParameterKey struct{}
)
func withAcceptLanguage(h http.Handler) http.Handler { func withAcceptLanguage(h http.Handler) http.Handler {
return http.HandlerFunc(func(res http.ResponseWriter, req *http.Request) { 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") langs := req.Header.Get("Accept-Language")
ctx = context.WithValue(ctx, acceptLanguageKey{}, langs) ctx = context.WithValue(ctx, acceptLanguageKey{}, langs)
lang := req.URL.Query().Get("lang") lang := req.URL.Query().Get("lang")
ctx = context.WithValue(ctx, langParameterKey{}, lang) ctx = context.WithValue(ctx, langParameterKey{}, lang)
req = req.WithContext(ctx) req = req.WithContext(ctx)
h.ServeHTTP(res, req) h.ServeHTTP(res, req)

View File

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